mirror of
https://codeberg.org/tom79/Fedilab.git
synced 2024-12-22 16:50:04 +02:00
small fixes
This commit is contained in:
parent
b0057786e1
commit
1ac365befa
1 changed files with 1 additions and 1 deletions
|
@ -568,7 +568,7 @@ public class FragmentMastodonTimeline extends Fragment implements StatusAdapter.
|
|||
*/
|
||||
private void route(DIRECTION direction, boolean fetchingMissing) {
|
||||
new Thread(() -> {
|
||||
if (binding == null || !isAdded()) {
|
||||
if (binding == null || getActivity() == null || !isAdded()) {
|
||||
return;
|
||||
}
|
||||
QuickLoad quickLoad = new QuickLoad(requireActivity()).getSavedValue(MainActivity.currentUserID, MainActivity.currentInstance, timelineType, ident);
|
||||
|
|
Loading…
Reference in a new issue