update: 启动时 IAP 开关将由InitConfig 的 IAPEnabled 以及GuruService 内云控开关联合控制

deeplink
胡宇飞 2024-03-18 09:37:28 +08:00
parent 7f805c56de
commit 75745ceb11
1 changed files with 2 additions and 1 deletions

View File

@ -209,7 +209,8 @@ namespace Guru
{
_appServicesConfig = services;
useKeywords = _appServicesConfig.KeywordsEnabled();
useIAP = _appServicesConfig.IsIAPEnabled();
// 使用初始化配置中的 IAPEnable来联合限定, 如果本地写死关闭则不走云控开启
useIAP = _initConfig.IAPEnabled && _appServicesConfig.IsIAPEnabled();
Try(() =>