Fix a crash with search/directory

This commit is contained in:
Thomas 2023-03-15 09:27:27 +01:00
parent 739183de9c
commit d3c44489f3
1 changed files with 1 additions and 1 deletions

View File

@ -141,7 +141,7 @@ public class FragmentMastodonAccount extends Fragment {
fetchAccount(firstLoad, remoteAccountId);
}
} else {
fetchAccount(firstLoad, accountTimeline.id);
fetchAccount(firstLoad, accountTimeline != null ? accountTimeline.id : null);
}
}