From ca5ee6f21c726ce0571096e67e8069b7443542ba Mon Sep 17 00:00:00 2001 From: Alexander Zinchuk Date: Wed, 3 May 2023 20:20:46 +0400 Subject: [PATCH] Super Group: Fix unavailable reactions (#3140) --- src/global/actions/api/chats.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/global/actions/api/chats.ts b/src/global/actions/api/chats.ts index 98dc1c06d..dcedb022c 100644 --- a/src/global/actions/api/chats.ts +++ b/src/global/actions/api/chats.ts @@ -2493,6 +2493,7 @@ export async function ensureIsSuperGroup( return undefined; } + actions.loadFullChat({ chatId: newChat.id, tabId }); actions.openChat({ id: newChat.id, tabId }); return newChat;