Fix #4 - Toot URLs can be shared
This commit is contained in:
parent
636c2f266e
commit
9e82b64423
5 changed files with 28 additions and 5 deletions
|
@ -36,6 +36,8 @@ public class Account {
|
|||
|
||||
public String header;
|
||||
|
||||
public boolean locked;
|
||||
|
||||
@SerializedName("followers_count")
|
||||
public String followersCount;
|
||||
|
||||
|
|
|
@ -24,6 +24,20 @@ import java.util.Date;
|
|||
public class Status {
|
||||
private Status actionableStatus;
|
||||
|
||||
public String url;
|
||||
|
||||
@SerializedName("reblogs_count")
|
||||
public String reblogsCount;
|
||||
|
||||
@SerializedName("favourites_count")
|
||||
public String favouritesCount;
|
||||
|
||||
@SerializedName("in_reply_to_id")
|
||||
public String inReplyToId;
|
||||
|
||||
@SerializedName("in_reply_to_account_id")
|
||||
public String inReplyToAccountId;
|
||||
|
||||
public String getActionableId() {
|
||||
return reblog == null ? id : reblog.id;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue