mirror of
https://github.com/nextcloud/android.git
synced 2024-11-28 10:18:59 +03:00
Fix #2439 NPE via null check
This commit is contained in:
parent
238b561159
commit
c18a44b044
1 changed files with 1 additions and 1 deletions
|
@ -396,7 +396,7 @@ public class UploadFileOperation extends SyncOperation {
|
|||
|
||||
// try to unlock folder with stored token, e.g. when upload needs to be resumed or app crashed
|
||||
// the parent folder should exist as it is a resume of a broken upload
|
||||
if (!mFolderUnlockToken.isEmpty()) {
|
||||
if (mFolderUnlockToken != null && !mFolderUnlockToken.isEmpty()) {
|
||||
UnlockFileOperation unlockFileOperation = new UnlockFileOperation(parent.getLocalId(), mFolderUnlockToken);
|
||||
RemoteOperationResult unlockFileOperationResult = unlockFileOperation.execute(client, true);
|
||||
|
||||
|
|
Loading…
Reference in a new issue