删除了"未知"默认数据

This commit is contained in:
董宏宇
2020-02-05 10:30:05 +08:00
parent 05bfb55778
commit 4b8fa42e88

View File

@@ -124,7 +124,7 @@ public class MarkerUserInfo implements Serializable {
public String getUserName() {
if (TextUtils.isEmpty(userName)) {
return "";
return "用户未设置昵称";
}
return userName;
}