Skip to content

Commit

Permalink
NPE fix for decryptedRemotePath
Browse files Browse the repository at this point in the history
Signed-off-by: alperozturk <alper_ozturk@proton.me>
  • Loading branch information
alperozturk96 committed Sep 5, 2024
1 parent ac07632 commit ee36877
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -777,7 +777,7 @@ public boolean isDownloading() {
}

public boolean isRootDirectory() {
return decryptedRemotePath.equals(ROOT_PATH);
return ROOT_PATH.equals(decryptedRemotePath);
}

public boolean isOfflineOperation() {
Expand Down

0 comments on commit ee36877

Please sign in to comment.