feat: 聊天记录查看器中,Owner显示在右侧

This commit is contained in:
digua
2025-12-25 00:27:59 +08:00
parent e0ade9087d
commit 18138a3563
2 changed files with 23 additions and 13 deletions

View File

@@ -377,6 +377,7 @@ export function getAllSessions(): any[] {
dbPath,
groupId: meta.group_id || null,
groupAvatar: meta.group_avatar || null,
ownerId: meta.owner_id || null,
})
}
@@ -431,6 +432,7 @@ export function getSession(sessionId: string): any | null {
dbPath: getDbPath(sessionId),
groupId: meta.group_id || null,
groupAvatar: meta.group_avatar || null,
ownerId: meta.owner_id || null,
}
}