Browse Source

if parent is null, then do a regular check, no early exit

Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
tobiasKaminsky 5 năm trước cách đây
mục cha
commit
f6e24eb067

+ 1 - 1
src/main/java/com/owncloud/android/ui/helpers/FileOperationsHelper.java

@@ -206,7 +206,7 @@ public class FileOperationsHelper {
 
             // check if latest sync is >30s ago
             OCFile parent = storageManager.getFileById(file.getParentId());
-            if (parent.getLastSyncDateForData() + 30 * 1000 > System.currentTimeMillis()) {
+            if (parent != null && parent.getLastSyncDateForData() + 30 * 1000 > System.currentTimeMillis()) {
                 EventBus.getDefault().post(new SyncEventFinished(intent));
 
                 return;