Fox: Get1Int function uses the wrong default value
This commit is contained in:
@@ -3221,13 +3221,13 @@ void CMy2015RemoteDlg::UpdateStatusBarStats()
|
|||||||
}
|
}
|
||||||
else if (m_settings.UsingFRPProxy) {
|
else if (m_settings.UsingFRPProxy) {
|
||||||
strFrpDisplay.Format(_T("%s:%d"), THIS_CFG.GetStr("settings", "master").c_str(),
|
strFrpDisplay.Format(_T("%s:%d"), THIS_CFG.GetStr("settings", "master").c_str(),
|
||||||
THIS_CFG.Get1Int("settings", "ghost", 6543));
|
THIS_CFG.Get1Int("settings", "ghost", ';', 6543));
|
||||||
}
|
}
|
||||||
else if (!m_localPublicIP.empty()) {
|
else if (!m_localPublicIP.empty()) {
|
||||||
strFrpDisplay.Format(_T("WAN %s:%d"), m_localPublicIP.c_str(), THIS_CFG.Get1Int("settings", "ghost", 6543));
|
strFrpDisplay.Format(_T("WAN %s:%d"), m_localPublicIP.c_str(), THIS_CFG.Get1Int("settings", "ghost", ';', 6543));
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
strFrpDisplay.Format(_T("LAN %s:%d"), m_localPrivateIP.c_str(), THIS_CFG.Get1Int("settings", "ghost", 6543));
|
strFrpDisplay.Format(_T("LAN %s:%d"), m_localPrivateIP.c_str(), THIS_CFG.Get1Int("settings", "ghost", ';', 6543));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// 根据是否有内容设置分区宽度
|
// 根据是否有内容设置分区宽度
|
||||||
|
|||||||
Reference in New Issue
Block a user