Prevent crash

pull/207/head
M66B 2 years ago
parent d4b48bceda
commit e2febdf1d4

@ -5336,11 +5336,15 @@ public class FragmentMessages extends FragmentBase implements SharedPreferences.
view.post(new Runnable() {
@Override
public void run() {
if (selectionTracker == null)
return;
selectionTracker.clearSelection();
for (long id : ids)
selectionTracker.select(id);
try {
if (selectionTracker == null)
return;
selectionTracker.clearSelection();
for (long id : ids)
selectionTracker.select(id);
} catch (Throwable ex) {
Log.e(ex);
}
}
});
}

Loading…
Cancel
Save