Use notifyItemRangeChange in ConversationListFragment onResume().

Closes #12085
This commit is contained in:
clauz9 2022-03-21 01:41:48 +02:00 committed by Greyson Parrelli
parent 142979ce93
commit b0be7effe8

View file

@ -328,7 +328,7 @@ public class ConversationListFragment extends MainFragment implements ActionMode
}
if (activeAdapter != null) {
activeAdapter.notifyDataSetChanged();
activeAdapter.notifyItemRangeChanged(0, activeAdapter.getItemCount());
}
SignalProxyUtil.startListeningToWebsocket();