mirror of
https://codeberg.org/tom79/Fedilab.git
synced 2025-01-03 14:40:07 +02:00
fix an issue
This commit is contained in:
parent
be1ea400de
commit
a12679cbbf
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) {
|
private void route(DIRECTION direction, boolean fetchingMissing) {
|
||||||
new Thread(() -> {
|
new Thread(() -> {
|
||||||
if (binding == null) {
|
if (binding == null || !isAdded()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
QuickLoad quickLoad = new QuickLoad(requireActivity()).getSavedValue(MainActivity.currentUserID, MainActivity.currentInstance, timelineType, ident);
|
QuickLoad quickLoad = new QuickLoad(requireActivity()).getSavedValue(MainActivity.currentUserID, MainActivity.currentInstance, timelineType, ident);
|
||||||
|
|
Loading…
Reference in a new issue