mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-08 07:57:28 +00:00
Null checks. Fixes https://github.com/austinhuang0131/barinsta/issues/905
This commit is contained in:
parent
c5d55f3661
commit
7dc9583e51
@ -241,6 +241,7 @@ public class DirectThreadViewModel extends AndroidViewModel {
|
||||
if (users != null && users.getValue() != null) {
|
||||
final List<User> userList = users.getValue();
|
||||
match = userList.stream()
|
||||
.filter(Objects::nonNull)
|
||||
.filter(user -> user.getPk() == userId)
|
||||
.findFirst()
|
||||
.orElse(null);
|
||||
@ -250,6 +251,7 @@ public class DirectThreadViewModel extends AndroidViewModel {
|
||||
if (leftUsers != null && leftUsers.getValue() != null) {
|
||||
final List<User> userList = leftUsers.getValue();
|
||||
match = userList.stream()
|
||||
.filter(Objects::nonNull)
|
||||
.filter(user -> user.getPk() == userId)
|
||||
.findFirst()
|
||||
.orElse(null);
|
||||
|
Loading…
Reference in New Issue
Block a user