修复测试反馈问题

This commit is contained in:
2023-11-07 14:20:49 +08:00
parent 48b30868f4
commit 74bcde8911
17 changed files with 173 additions and 67 deletions

View File

@@ -3,6 +3,7 @@ package com.yunbao.common.bean;
import android.text.TextUtils;
import com.google.gson.annotations.SerializedName;
import com.yunbao.common.CommonAppConfig;
import java.util.List;
@@ -467,6 +468,9 @@ public class IMLoginModel extends BaseModel {
}
public String getAvatar() {
if (!avatar.startsWith("http")) {
avatar = CommonAppConfig.HOST+"/" + avatar;
}
return avatar;
}