yyl
2025-05-23 2fa304ada32e6d8a9444136e29d3fb5cefa77538
Main/Login/ServerListCenter.cs
@@ -220,18 +220,13 @@
        if (VersionConfig.Get().versionAuthority == VersionAuthority.InterTest)
        {
            var localSaveAccountName = LocalSave.GetString(LoginManager.Instance.USER_ACCOUNT);
            var localSaveAccountName = LocalSave.GetString(LoginManager.USER_ACCOUNT);
            RequestServerListPlayer(localSaveAccountName);
        }
    }
    public void RequestServerCommonList()
    {
        if (VersionUtility.Instance.InIosAuditTime())
        {
            return;
        }
        HttpRequest.Instance.RequestHttpGet(SERVERLIST_URL_COMMON, HttpRequest.defaultHttpContentType, 1, OnGetServerList);
    }
@@ -240,7 +235,7 @@
        if (_ok)
        {
            ServerListParser.Instance.PushCommonServerListRawData(_result);
            // NetLinkWin.Hide();
            NetLinkWin.Hide();
        }
        else
        {
@@ -458,7 +453,7 @@
    //这边请求用的是旧账号,sdk登录成功会用新账号请求一次,内网登录需要手动点击一次服务器列表刷新
    public void RequestPlayerServerList()
    {
        if (LoginManager.Instance.IsLogined)
        if (LoginManager.Instance.isLogined)
        {
            var account = LoginManager.Instance.localSaveAccountName;
            if (string.IsNullOrEmpty(account))
@@ -477,7 +472,7 @@
    //2.服务器列表界面刷新逻辑没做好,serverGroupSelectEvent的调用直接决定了界面显示
    public void FiltrateDefaultServerAndServerGroup()
    {
        if (LoginManager.Instance.IsLogined)
        if (LoginManager.Instance.isLogined)
        {
            return;
        }