From 0d06131677f4f80c1423bb6d4040408810539e67 Mon Sep 17 00:00:00 2001 From: huyufei Date: Mon, 3 Jun 2024 17:25:05 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E6=96=87=E5=AD=97?= =?UTF-8?q?=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Runtime/Code/SDK/GuruSDK.Debugger.cs | 2 +- Runtime/Code/SDK/GuruSDK.Properties.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Runtime/Code/SDK/GuruSDK.Debugger.cs b/Runtime/Code/SDK/GuruSDK.Debugger.cs index 88ce896..57760a4 100644 --- a/Runtime/Code/SDK/GuruSDK.Debugger.cs +++ b/Runtime/Code/SDK/GuruSDK.Debugger.cs @@ -62,7 +62,7 @@ namespace Guru var device_id = (string.IsNullOrEmpty(DeviceId) ? "NULL" : DeviceId); var push_token = (string.IsNullOrEmpty(PushToken) ? "NULL" : PushToken); var auth_token = (string.IsNullOrEmpty(AuthToken) ? "NULL" : AuthToken); - var fid = (string.IsNullOrEmpty(FireabseId) ? "NULL" : FireabseId); + var fid = (string.IsNullOrEmpty(FirebaseId) ? "NULL" : FirebaseId); var adjust_id = (string.IsNullOrEmpty(AdjustId) ? "NULL" : AdjustId); var idfa = (string.IsNullOrEmpty(IDFA) ? "NULL" : IDFA); var gsid = (string.IsNullOrEmpty(GSADID) ? "NULL" : GSADID); diff --git a/Runtime/Code/SDK/GuruSDK.Properties.cs b/Runtime/Code/SDK/GuruSDK.Properties.cs index 1b7e4b8..d78224b 100644 --- a/Runtime/Code/SDK/GuruSDK.Properties.cs +++ b/Runtime/Code/SDK/GuruSDK.Properties.cs @@ -38,7 +38,7 @@ namespace Guru public static bool IsNewUser => IPMConfig.IPM_NEWUSER; - public static string FireabseId => IPMConfig.FIREBASE_ID; + public static string FirebaseId => IPMConfig.FIREBASE_ID; public static string IDFA => IPMConfig.ADJUST_IDFA; public static string AdjustId => IPMConfig.ADJUST_ID; public static string GSADID => IPMConfig.ADJUST_ADID;