|
|
@@ -145,17 +145,17 @@ public class Status implements Parcelable { |
|
|
|
private Card card; |
|
|
|
private String language; |
|
|
|
private boolean isTranslated = false; |
|
|
|
private boolean isEmojiFound = false; |
|
|
|
private boolean isPollEmojiFound = false; |
|
|
|
private boolean isImageFound = false; |
|
|
|
private boolean isEmojiTranslateFound = false; |
|
|
|
private transient boolean isEmojiFound = false; |
|
|
|
private transient boolean isPollEmojiFound = false; |
|
|
|
private transient boolean isImageFound = false; |
|
|
|
private transient boolean isEmojiTranslateFound = false; |
|
|
|
private boolean isTranslationShown = false; |
|
|
|
private boolean isNew = false; |
|
|
|
private boolean isVisible = true; |
|
|
|
private boolean fetchMore = false; |
|
|
|
private String content, contentCW, contentTranslated; |
|
|
|
private SpannableString contentSpan, contentSpanCW, contentSpanTranslated; |
|
|
|
private RetrieveFeedsAsyncTask.Type type; |
|
|
|
private transient RetrieveFeedsAsyncTask.Type type; |
|
|
|
private int itemViewType; |
|
|
|
private String conversationId; |
|
|
|
private boolean isExpanded = false; |
|
|
@@ -184,9 +184,9 @@ public class Status implements Parcelable { |
|
|
|
private List<String> imageURL; |
|
|
|
private int viewType; |
|
|
|
private boolean isFocused = false; |
|
|
|
private long db_id; |
|
|
|
private boolean commentsFetched = false; |
|
|
|
private List<Status> comments = new ArrayList<>(); |
|
|
|
private transient long db_id; |
|
|
|
private transient boolean commentsFetched = false; |
|
|
|
private transient List<Status> comments = new ArrayList<>(); |
|
|
|
|
|
|
|
public Status() { |
|
|
|
} |
|
|
@@ -1314,7 +1314,7 @@ public class Status implements Parcelable { |
|
|
|
} |
|
|
|
|
|
|
|
public String getContent() { |
|
|
|
return content; |
|
|
|
return content.replaceAll("\\p{C}", "?"); |
|
|
|
} |
|
|
|
|
|
|
|
public void setContent(Context context, String content) { |
|
|
|