fix: nickname可能为null

This commit is contained in:
手瓜一十雪
2025-01-20 16:06:34 +08:00
parent 660fa9211b
commit 4c9f778a61
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;
}