mirror of
https://codeberg.org/tom79/Fedilab.git
synced 2025-04-05 14:40:01 +03:00
Fix a crash
This commit is contained in:
parent
91a2d61fd0
commit
ef83f58648
1 changed files with 4 additions and 1 deletions
|
@ -263,8 +263,11 @@ public class FragmentMastodonAccount extends Fragment {
|
|||
.observe(getViewLifecycleOwner(), relationShips -> {
|
||||
if (relationShips != null) {
|
||||
for (RelationShip relationShip : relationShips) {
|
||||
if(relationShip == null || relationShip.id == null ) {
|
||||
continue;
|
||||
}
|
||||
for (Account account : accounts) {
|
||||
if (account.id.compareToIgnoreCase(relationShip.id) == 0) {
|
||||
if (account != null && account.id != null && account.id.compareToIgnoreCase(relationShip.id) == 0) {
|
||||
account.relationShip = relationShip;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue