Makes the main status of a thread appear as a more detailed view.

This commit is contained in:
Vavassor 2017-08-03 00:29:31 -04:00
commit 309c89eefc
9 changed files with 565 additions and 38 deletions

View file

@ -100,6 +100,8 @@ public class Status {
public Mention[] mentions;
public Application application;
public static final int MAX_MEDIA_ATTACHMENTS = 4;
@Override
@ -172,4 +174,9 @@ public class Status {
@SerializedName("username")
public String localUsername;
}
public static class Application {
public String name;
public String website;
}
}