mirror of
https://codeberg.org/tom79/Fedilab.git
synced 2024-12-22 16:50:04 +02:00
Bug with long values
This commit is contained in:
parent
30f3ab8dca
commit
d017952ffe
2 changed files with 6 additions and 6 deletions
|
@ -60,11 +60,11 @@ public class Account implements Serializable {
|
|||
@SerializedName("header_static")
|
||||
public String header_static;
|
||||
@SerializedName("followers_count")
|
||||
public int followers_count;
|
||||
public long followers_count;
|
||||
@SerializedName("following_count")
|
||||
public int following_count;
|
||||
public long following_count;
|
||||
@SerializedName("statuses_count")
|
||||
public int statuses_count;
|
||||
public long statuses_count;
|
||||
@SerializedName("last_status_at")
|
||||
public Date last_status_at;
|
||||
@SerializedName("source")
|
||||
|
|
|
@ -62,11 +62,11 @@ public class Status implements Serializable, Cloneable {
|
|||
@SerializedName("url")
|
||||
public String url;
|
||||
@SerializedName("replies_count")
|
||||
public int replies_count;
|
||||
public long replies_count;
|
||||
@SerializedName("reblogs_count")
|
||||
public int reblogs_count;
|
||||
public long reblogs_count;
|
||||
@SerializedName("favourites_count")
|
||||
public int favourites_count;
|
||||
public long favourites_count;
|
||||
@SerializedName("favourited")
|
||||
public boolean favourited;
|
||||
@SerializedName("reblogged")
|
||||
|
|
Loading…
Reference in a new issue