From d7e00e744e561ca7c90604f19f88911bf53bf729 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BE=A1=E5=AE=85=E7=94=B7=28YznCMS=E5=AE=98=E6=96=B9=29?= <530765310@qq.com> Date: Thu, 6 Feb 2025 10:26:33 +0800 Subject: [PATCH] Update chat.ts --- src/stores/chat.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/chat.ts b/src/stores/chat.ts index da31690..97deb10 100644 --- a/src/stores/chat.ts +++ b/src/stores/chat.ts @@ -233,7 +233,7 @@ export const useChatStore = defineStore('chat', () => { // 初始化所有用户基本信息 userStore.isSign && cachedStore.initAllUserBaseInfo() // 联系人列表 - contactStore.getContactList(true) + userStore.isSign && contactStore.getContactList(true) } }