From a1e66a09aca5cdfd06f2cf4ba5cfb5291dce9f44 Mon Sep 17 00:00:00 2001 From: luying Date: Thu, 4 Nov 2021 17:54:15 +0800 Subject: [PATCH] =?UTF-8?q?=E8=81=8A=E5=A4=A9=EF=BC=9A=E4=BF=AE=E5=A4=8D?= =?UTF-8?q?=E6=A0=BC=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- shared/db/ChatInfo.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/db/ChatInfo.ts b/shared/db/ChatInfo.ts index f74c52c2e..d48b44582 100644 --- a/shared/db/ChatInfo.ts +++ b/shared/db/ChatInfo.ts @@ -36,7 +36,7 @@ export default class ChatInfo extends BaseModel { @prop({ required: true, default: '' }) bubbleId: string; // 气泡编号 @prop({ required: true, type: PrivateChatRec, default: [], _id: false }) - recentPrivateChats: [PrivateChatRec]; // 最近聊天列表 + recentPrivateChats: PrivateChatRec[]; // 最近聊天列表 public static async createInfo(data: ChatInfoParam) { const roleId = data.roleId!;