From 34d46a85f1b121753368ab6215651598006a84c3 Mon Sep 17 00:00:00 2001 From: CrescentLeaf Date: Sun, 7 Dec 2025 15:44:17 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=A0=A2=E5=88=B0=E5=AE=B6=E7=9A=84?= =?UTF-8?q?=E4=B8=80=E9=9B=86=E4=B9=8B=20favouritechat=20=E6=88=90?= =?UTF-8?q?=E7=B2=BE=E6=88=90=20recentchats?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client-protocol/UserMySelf.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client-protocol/UserMySelf.ts b/client-protocol/UserMySelf.ts index 13afacc..e678cdb 100644 --- a/client-protocol/UserMySelf.ts +++ b/client-protocol/UserMySelf.ts @@ -156,7 +156,7 @@ export default class UserMySelf extends User { token: this.client.access_token }) if (re.code == 200) - return re.data!.recent_chats as ChatBean[] + return (re.data!.favourite_chats || re.data!.contacts_list) as ChatBean[] throw new CallbackError(re) } async getMyFavouriteChats() {