Browse Source

parent file can be null

Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
tobiasKaminsky 5 years ago
parent
commit
35a625234b

+ 2 - 1
src/main/java/com/owncloud/android/ui/activity/FileDisplayActivity.java

@@ -1892,7 +1892,8 @@ public class FileDisplayActivity extends FileActivity
                 setFile(getStorageManager().getFileById(removedFile.getParentId()));
                 cleanSecondFragment();
             }
-            if (getStorageManager().getFileById(removedFile.getParentId()).equals(getCurrentDir())) {
+            OCFile parentFile = getStorageManager().getFileById(removedFile.getParentId());
+            if (parentFile != null && parentFile.equals(getCurrentDir())) {
                 refreshListOfFilesFragment(false);
             }
             supportInvalidateOptionsMenu();