From d0212023eb567c6ec68c193594bc695265575e7f Mon Sep 17 00:00:00 2001 From: Infi Date: Wed, 8 May 2024 22:20:22 +0200 Subject: [PATCH] Remove debug informations --- ChatTwo/EmoteCache.cs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/ChatTwo/EmoteCache.cs b/ChatTwo/EmoteCache.cs index a1ba6f4..ff3fb4b 100644 --- a/ChatTwo/EmoteCache.cs +++ b/ChatTwo/EmoteCache.cs @@ -60,13 +60,8 @@ public static class EmoteCache .ReadAsStringAsync() .Result; - Plugin.Log.Information(top100); - var json = JsonSerializer.Deserialize>(top100); - foreach (var emote in json) - { - Plugin.Log.Information($"emote {emote.Emote.Code}"); + foreach (var emote in JsonSerializer.Deserialize>(top100)!) Cache.TryAdd(emote.Emote.Code, emote.Emote); - } EmoteCodeArray = Cache.Keys.ToArray(); IsBTTVDataLoaded = true;