Fixes intermittent crashes when clicking the reply button and opening a thread. Closes #26

This commit is contained in:
Vavassor 2017-03-15 15:27:49 -04:00
commit 19e2725824
4 changed files with 19 additions and 12 deletions

View file

@ -77,6 +77,10 @@ public class Status {
public Visibility visibility;
public Visibility getVisibility() {
return visibility == null ? Visibility.UNLISTED : visibility;
}
@SerializedName("media_attachments")
public MediaAttachment[] attachments;