fix: nickname可能为null

This commit is contained in:
手瓜一十雪
2025-01-20 16:06:34 +08:00
parent afd6d450a0
commit 4592bf7817
2 changed files with 2 additions and 2 deletions

View File

@@ -18,7 +18,7 @@ export interface BuddyCategoryType {
export interface CoreInfo {
uid: string;
uin: string;
nick: string;
nick?: string;
remark: string;
}