fix(mute-conversations-toggle): fix oversight where only the answers would get muted/unmuted on the conversion. This make the whole thread either muted or unmuted

This commit is contained in:
LucasGGamerM 2023-09-19 14:35:40 -03:00
parent 17fc14de97
commit f5732fd2ae

View file

@ -82,8 +82,7 @@ public class ThreadFragment extends StatusListFragment implements ProvidesAssist
@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++){