少年修仙传客户端基础资源
hch
2024-04-03 60eb138bf67b953782ac1572d84b96bf3c660bd4
0312 不下载的包请求链接
1个文件已修改
12 ■■■■ 已修改文件
Assets/Launch/ResourcesModel.cs 12 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Assets/Launch/ResourcesModel.cs
@@ -166,12 +166,6 @@
        public void RequestVersionCheck()
        {
            var versionConfig = VersionConfigEx.Get();
            if (versionConfig.assetAccess == VersionConfigEx.InstalledAsset.IngoreDownLoad)
            {
                step = LoadDllStep.ReadBytes;
                return;
            }
            var tables = new Dictionary<string, string>();
            tables["channel"] = versionConfig.appId;
            tables["versioncode"] = versionConfig.version;
@@ -195,6 +189,12 @@
            {
                versionUrlResult = _result.Replace("{}", "null");
                versionInfo = JsonMapper.ToObject<VersionInfo>(versionUrlResult);
                if (VersionConfigEx.Get().assetAccess == VersionConfigEx.InstalledAsset.IngoreDownLoad)
                {
                    step = LoadDllStep.ReadBytes;
                    return;
                }
                step = LoadDllStep.PrepareDownLoad;
            }
            else