From 0679a0e57a9e5a8b9afeb2e1e8d0a6c8e8e40070 Mon Sep 17 00:00:00 2001 From: Infi Date: Sat, 2 May 2026 03:28:15 +0200 Subject: [PATCH] Fix a regression from API 15 updates (cherry picked from commit ff899ffe54ef76bcdf9c13b5690957c5b5e17637) --- ChatTwo/EmoteCache.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ChatTwo/EmoteCache.cs b/ChatTwo/EmoteCache.cs index 52ee38f..2ecb3b9 100644 --- a/ChatTwo/EmoteCache.cs +++ b/ChatTwo/EmoteCache.cs @@ -32,23 +32,23 @@ public static class EmoteCache private struct Top100() { [JsonPropertyName("emote")] - public Emote Emote = default; + public Emote Emote { get; set; } [JsonPropertyName("id")] - public string Id = string.Empty; + public string Id { get; set; } } [Serializable] public struct Emote() { [JsonPropertyName("id")] - public string Id = string.Empty; + public string Id { get; set; } [JsonPropertyName("code")] - public string Code = string.Empty; + public string Code { get; set; } [JsonPropertyName("imageType")] - public string ImageType = string.Empty; + public string ImageType { get; set; } } public enum LoadingState