diff options
| author | Alex <byteduck@exploit.org> | 2025-09-26 06:42:10 +0200 |
|---|---|---|
| committer | Aliaksei Levin <22669599+levlam@users.noreply.github.com> | 2025-10-15 15:01:14 +0300 |
| commit | c66844c949aea93bea38c04093bcbed9d95e8fc4 (patch) | |
| tree | 92a988b53a2964a087d826fcd35a1cd52b700d51 /example | |
| parent | 8fbaf8441a79214bd00a1f19ab0bbcc91cd04e52 (diff) | |
Fix chat.theme assignment in UpdateChatTheme update handler in Java Example.
Diffstat (limited to 'example')
| -rw-r--r-- | example/java/org/drinkless/tdlib/example/Example.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/example/java/org/drinkless/tdlib/example/Example.java b/example/java/org/drinkless/tdlib/example/Example.java index ffa18deba..5f1545468 100644 --- a/example/java/org/drinkless/tdlib/example/Example.java +++ b/example/java/org/drinkless/tdlib/example/Example.java @@ -568,7 +568,7 @@ public final class Example { TdApi.UpdateChatTheme updateChat = (TdApi.UpdateChatTheme) object; TdApi.Chat chat = chats.get(updateChat.chatId); synchronized (chat) { - chat.themeName = updateChat.themeName; + chat.theme = updateChat.theme; } break; } |
