hopefully unfuck removing statuses and reblogs

This commit is contained in:
sk
2023-10-19 21:42:17 +02:00
parent 95fa547f15
commit 387b31193f
4 changed files with 65 additions and 40 deletions

View File

@@ -195,6 +195,10 @@ public class Status extends BaseModel implements DisplayItemsParent, Searchable{
return reblog!=null ? reblog : this;
}
public String getContentStatusID(){
return getContentStatus().id;
}
public String getStrippedText(){
if(strippedText==null)
strippedText=HtmlParser.strip(content);