Skip to content
This repository has been archived by the owner on Oct 28, 2024. It is now read-only.

Commit

Permalink
copy revealed states when opening boosted post
Browse files Browse the repository at this point in the history
closes #627
  • Loading branch information
sk22 committed Jun 27, 2023
1 parent a6ca8c6 commit f7c5736
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,11 @@ public void onItemClick(String id){
Status status=getContentStatusByID(id);
if(status==null)
return;
Status parentStatus = getStatusByID(id);
if (parentStatus != status) {
status.spoilerRevealed = parentStatus.spoilerRevealed;
status.sensitiveRevealed = parentStatus.sensitiveRevealed;
}
status.filterRevealed = true;
Bundle args=new Bundle();
args.putString("account", accountID);
Expand Down

0 comments on commit f7c5736

Please sign in to comment.