From c2be3689626a49bede2f22840dfcccb58d66f898 Mon Sep 17 00:00:00 2001 From: huyufei Date: Fri, 24 May 2024 16:48:23 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=20bugs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Runtime/Code/SDK/GuruSDK.Analytics.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Runtime/Code/SDK/GuruSDK.Analytics.cs b/Runtime/Code/SDK/GuruSDK.Analytics.cs index 3be005a..d30f5e0 100644 --- a/Runtime/Code/SDK/GuruSDK.Analytics.cs +++ b/Runtime/Code/SDK/GuruSDK.Analytics.cs @@ -252,12 +252,12 @@ namespace Guru if (Model.IsNoAds) SetBuyNoAds(true); // 设置用户已经购买了去广告 } - private static HashSet _userPropertyExistKeys = new HashSet(50); + private static HashSet _userPropertyExistKeys = new HashSet(); private static void RecordUserPropertyKey(string key) { if(_userPropertyExistKeys == null) - _userPropertyExistKeys = new HashSet(50); + _userPropertyExistKeys = new HashSet(); if(!HasUserPropertyKey(key)) _userPropertyExistKeys.Add(key); }