From ad39f77ed3552956e8e104459931b75b32530808 Mon Sep 17 00:00:00 2001 From: HuYufei Date: Fri, 5 Jan 2024 15:50:31 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8DRemoteConfig=20?= =?UTF-8?q?=E4=BA=91=E6=8E=A7=E5=AD=97=E5=85=B8=E5=8F=96=E5=80=BC=E7=9A=84?= =?UTF-8?q?BUG?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Runtime/GuruRemote/Runtime/RemoteConfigModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Runtime/GuruRemote/Runtime/RemoteConfigModel.cs b/Runtime/GuruRemote/Runtime/RemoteConfigModel.cs index 19d8ad9..10e78d4 100644 --- a/Runtime/GuruRemote/Runtime/RemoteConfigModel.cs +++ b/Runtime/GuruRemote/Runtime/RemoteConfigModel.cs @@ -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)) {