Signed-off-by: alperozturk <alper_ozturk@proton.me>
This commit is contained in:
alperozturk 2024-10-09 12:37:48 +02:00
Родитель 9576ce191c
Коммит 4199cfa46f
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4E577DC593B59BDF
1 изменённых файлов: 1 добавлений и 5 удалений

Просмотреть файл

@ -236,11 +236,7 @@ public class RefreshFolderOperation extends RemoteOperation {
mConflictsFound = 0;
mForgottenLocalFiles.clear();
if (mLocalFolder == null) {
return new RemoteOperationResult<>(ResultCode.LOCAL_FILE_NOT_FOUND);
}
if (mLocalFolder.getRemotePath() == null) {
if (mLocalFolder == null || mLocalFolder.getRemotePath() == null) {
return new RemoteOperationResult<>(ResultCode.LOCAL_FILE_NOT_FOUND);
}