Skip to content

Commit

Permalink
fix(mute-conversations-toggle): fix oversight where only the answers …
Browse files Browse the repository at this point in the history
…would get muted/unmuted on the conversion. This make the whole thread either muted or unmuted
  • Loading branch information
LucasGGamerM committed Sep 19, 2023
1 parent 17fc14d commit f5732fd
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,7 @@ public void onDestroy(){

@Subscribe
public void onStatusMuteChaged(StatusMuteChangedEvent ev){
List<Status> statuses = getDirectDescendants(ev.id, data);
for(Status s:statuses){
for(Status s:data){
s.getContentStatus().update(ev);
AccountSessionManager.get(accountID).getCacheController().updateStatus(s);
for(int i=0;i<list.getChildCount();i++){
Expand Down

0 comments on commit f5732fd

Please sign in to comment.