Fix bug
This commit is contained in:
parent
a60914d0e8
commit
a76de1b792
|
|
@ -7,12 +7,12 @@ import com.google.gson.annotations.SerializedName;
|
||||||
public class Owner {
|
public class Owner {
|
||||||
|
|
||||||
@SerializedName("mid")
|
@SerializedName("mid")
|
||||||
private int mid;
|
private String mid;
|
||||||
@SerializedName("name")
|
@SerializedName("name")
|
||||||
private String name;
|
private String name;
|
||||||
|
|
||||||
public int getMid() {
|
public String getMid() {
|
||||||
return mid;
|
return TextUtils.isEmpty(mid) ? "" : mid;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getName() {
|
public String getName() {
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -1 +1 @@
|
||||||
447dbd3dd81f649465abb48b68deb958
|
386aa45681818befd51ff5008f88f4e5
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue