From 283b91826fd5525365634a9711be01ab72411fda Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Tue, 25 Aug 2026 20:32:15 +0300 Subject: [PATCH] attach chats socket --- src/boot/after_store.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/boot/after_store.js b/src/boot/after_store.js index f411235f3..3f2033ecc 100644 --- a/src/boot/after_store.js +++ b/src/boot/after_store.js @@ -29,6 +29,7 @@ import { import routes from './routes' import { useAuthFlowStore } from 'src/stores/auth_flow' +import { useChatsStore } from 'src/stores/chats.js' import { useEmojiStore } from 'src/stores/emoji.js' import { useI18nStore } from 'src/stores/i18n' import { useInstanceStore } from 'src/stores/instance.js' @@ -593,6 +594,7 @@ const afterStoreSetup = async ({ pinia, store, storageError, i18n }) => { useI18nStore().setI18n(i18n) // Global WS handlers + useChatsStore().attachSocket() useInterfaceStore().attachSocket() useStatusesStore().attachSocket()