Some fixes

This commit is contained in:
Thomas 2024-01-22 09:49:08 +01:00
parent 596c546cce
commit a2c865a4b7
2 changed files with 4 additions and 3 deletions

View File

@ -907,6 +907,7 @@ public class Helper {
fragment = _fragment;
} else {
if (args != null) fragment.setArguments(args);
ft = fragmentManager.beginTransaction();
ft.add(containerViewId, fragment, tag);
if (backStackName != null) ft.addToBackStack(backStackName);
if(!fragmentManager.isDestroyed()) {

View File

@ -1144,7 +1144,7 @@ public class FragmentMastodonTimeline extends Fragment implements StatusAdapter.
}
initializeStatusesCommonView(otherStatuses);
}));
} else {
} else if(accountTimeline != null){
tempToken[0] = MainActivity.currentToken;
tempInstance[0] = currentInstance;
accountId[0] = accountTimeline.id;
@ -1155,12 +1155,12 @@ public class FragmentMastodonTimeline extends Fragment implements StatusAdapter.
} else {
accountId[0] = accountIDInRemoteInstance;
}
} else {
} else if(accountTimeline != null){
tempToken[0] = MainActivity.currentToken;
tempInstance[0] = currentInstance;
accountId[0] = accountTimeline.id;
}
if (accountId[0] == null) {
if (accountId[0] == null && accountTimeline != null) {
accountId[0] = accountTimeline.id;
}
displayStatuses(direction, accountId[0], tempInstance[0], tempToken[0], fetchStatus);