fix: 修复RemoteConfig 云控字典取值的BUG

feature/Inventory
胡宇飞 2024-01-05 15:50:31 +08:00
parent 281b6a21bd
commit ad39f77ed3
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ namespace Guru
string json = "";
if (HasKey(key))
{
json = configs[json];
json = configs[key];
}
else if (_defConfigs.TryGetValue(key, out var defValue))
{