mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-16 11:47:29 +00:00
Null checks. Fixes https://github.com/austinhuang0131/barinsta/issues/990
This commit is contained in:
parent
1c1e5f0654
commit
977ccce22c
@ -414,10 +414,14 @@ public class DirectMessageThreadFragment extends Fragment implements DirectReact
|
|||||||
case SUCCESS:
|
case SUCCESS:
|
||||||
Toast.makeText(context, R.string.marked_as_seen, Toast.LENGTH_SHORT).show();
|
Toast.makeText(context, R.string.marked_as_seen, Toast.LENGTH_SHORT).show();
|
||||||
case LOADING:
|
case LOADING:
|
||||||
item.setEnabled(false);
|
if (item != null) {
|
||||||
|
item.setEnabled(false);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case ERROR:
|
case ERROR:
|
||||||
item.setEnabled(true);
|
if (item != null) {
|
||||||
|
item.setEnabled(true);
|
||||||
|
}
|
||||||
if (resource.message != null) {
|
if (resource.message != null) {
|
||||||
Snackbar.make(context, binding.getRoot(), resource.message, Snackbar.LENGTH_LONG).show();
|
Snackbar.make(context, binding.getRoot(), resource.message, Snackbar.LENGTH_LONG).show();
|
||||||
return;
|
return;
|
||||||
@ -956,7 +960,9 @@ public class DirectMessageThreadFragment extends Fragment implements DirectReact
|
|||||||
}
|
}
|
||||||
final DirectThread thread = threadLiveData.getValue();
|
final DirectThread thread = threadLiveData.getValue();
|
||||||
if (thread == null) return;
|
if (thread == null) return;
|
||||||
markAsSeenMenuItem.setEnabled(!DMUtils.isRead(thread));
|
if (markAsSeenMenuItem != null) {
|
||||||
|
markAsSeenMenuItem.setEnabled(!DMUtils.isRead(thread));
|
||||||
|
}
|
||||||
});
|
});
|
||||||
if (itemsAdapter == null) return;
|
if (itemsAdapter == null) return;
|
||||||
itemsAdapter.submitList(items, () -> {
|
itemsAdapter.submitList(items, () -> {
|
||||||
|
Loading…
Reference in New Issue
Block a user