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;