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:
@@ -82,8 +82,7 @@ public class ThreadFragment extends StatusListFragment implements ProvidesAssist
|
|||||||
|
|
||||||
@Subscribe
|
@Subscribe
|
||||||
public void onStatusMuteChaged(StatusMuteChangedEvent ev){
|
public void onStatusMuteChaged(StatusMuteChangedEvent ev){
|
||||||
List<Status> statuses = getDirectDescendants(ev.id, data);
|
for(Status s:data){
|
||||||
for(Status s:statuses){
|
|
||||||
s.getContentStatus().update(ev);
|
s.getContentStatus().update(ev);
|
||||||
AccountSessionManager.get(accountID).getCacheController().updateStatus(s);
|
AccountSessionManager.get(accountID).getCacheController().updateStatus(s);
|
||||||
for(int i=0;i<list.getChildCount();i++){
|
for(int i=0;i<list.getChildCount();i++){
|
||||||
|
|||||||
Reference in New Issue
Block a user