update: 启动时 IAP 开关将由InitConfig 的 IAPEnabled 以及GuruService 内云控开关联合控制
parent
7f805c56de
commit
75745ceb11
|
|
@ -209,7 +209,8 @@ namespace Guru
|
||||||
{
|
{
|
||||||
_appServicesConfig = services;
|
_appServicesConfig = services;
|
||||||
useKeywords = _appServicesConfig.KeywordsEnabled();
|
useKeywords = _appServicesConfig.KeywordsEnabled();
|
||||||
useIAP = _appServicesConfig.IsIAPEnabled();
|
// 使用初始化配置中的 IAPEnable来联合限定, 如果本地写死关闭则不走云控开启
|
||||||
|
useIAP = _initConfig.IAPEnabled && _appServicesConfig.IsIAPEnabled();
|
||||||
|
|
||||||
|
|
||||||
Try(() =>
|
Try(() =>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue