Skip to content

Commit

Permalink
Merge pull request #353
Browse files Browse the repository at this point in the history
fix(remote-info): remove null check
  • Loading branch information
LucasGGamerM authored Mar 17, 2024
2 parents 25f9e60 + a7b5109 commit 47473a6
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,7 @@ public void onViewCreated(View view, Bundle savedInstanceState) {
}

remoteDisabled = !GlobalUserPreferences.allowRemoteLoading
|| getSession().domain.equals(getRemoteDomain())
|| remoteInfoRequest == null;
|| getSession().domain.equals(getRemoteDomain());
if (!remoteDisabled) {
remoteInfoRequest = loadRemoteInfo().setCallback(new Callback<>() {
@Override
Expand Down

0 comments on commit 47473a6

Please sign in to comment.