mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-08 10:03:51 +02:00
Prevent crash
This commit is contained in:
@@ -4078,7 +4078,13 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
||||
if (this.suitable != state.isSuitable() || this.unmetered != state.isUnmetered()) {
|
||||
this.suitable = state.isSuitable();
|
||||
this.unmetered = state.isUnmetered();
|
||||
notifyDataSetChanged();
|
||||
|
||||
new Handler().post(new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
notifyDataSetChanged();
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user