From df91de78f3386fdaf3b528f5d0084727c7bf8ddf Mon Sep 17 00:00:00 2001 From: yuanyuanxiang <962914132@qq.com> Date: Tue, 5 May 2026 16:10:54 +0200 Subject: [PATCH] Fox: Get1Int function uses the wrong default value --- server/2015Remote/2015RemoteDlg.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/server/2015Remote/2015RemoteDlg.cpp b/server/2015Remote/2015RemoteDlg.cpp index f48064a..45e74c5 100644 --- a/server/2015Remote/2015RemoteDlg.cpp +++ b/server/2015Remote/2015RemoteDlg.cpp @@ -3221,13 +3221,13 @@ void CMy2015RemoteDlg::UpdateStatusBarStats() } else if (m_settings.UsingFRPProxy) { 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()) { - 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 { - 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)); } } // 根据是否有内容设置分区宽度