Merge pull request #353

fix(remote-info): remove null check
This commit is contained in:
LucasGGamerM
2024-03-17 09:21:38 -03:00
committed by GitHub

View File

@@ -45,8 +45,7 @@ public abstract class PaginatedAccountListFragment<T> extends BaseAccountListFra
}
remoteDisabled = !GlobalUserPreferences.allowRemoteLoading
|| getSession().domain.equals(getRemoteDomain())
|| remoteInfoRequest == null;
|| getSession().domain.equals(getRemoteDomain());
if (!remoteDisabled) {
remoteInfoRequest = loadRemoteInfo().setCallback(new Callback<>() {
@Override