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:
parent
17fc14de97
commit
f5732fd2ae
1 changed files with 1 additions and 2 deletions
|
@ -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++){
|
||||
|
|
Loading…
Add table
Reference in a new issue