From ae127a8d5184e92b7f0662c13b512b1f60c01f76 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Wed, 26 Aug 2026 15:22:50 +0300 Subject: [PATCH] comment --- src/components/chat_view/chat_view.js | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/components/chat_view/chat_view.js b/src/components/chat_view/chat_view.js index 784af9ad3..75ab21dd5 100644 --- a/src/components/chat_view/chat_view.js +++ b/src/components/chat_view/chat_view.js @@ -457,10 +457,16 @@ const Chat = { // Sanity check if (!this.isConversation && message.chat_id !== this.chat.id) { + // This is spammy, we get chat updates from a global chat update + // handler, which naturally receives updates for ALL chats. + // There is no way to subscribe to specific chat updates and listen + // to that in the API. + /* console.warn( `Chat message doesn't belong to current chat (id: ${this.chat.id})!!`, message, ) + */ return }