Browse Source

add null check

Andy Scherzinger 4 years ago
parent
commit
2f60b75fc5
1 changed files with 3 additions and 1 deletions
  1. 3 1
      src/main/java/com/owncloud/android/utils/FileStorageUtils.java

+ 3 - 1
src/main/java/com/owncloud/android/utils/FileStorageUtils.java

@@ -189,7 +189,9 @@ public final class FileStorageUtils {
 
     public static String getParentPath(String remotePath) {
         String parentPath = new File(remotePath).getParent();
-        parentPath = parentPath.endsWith(OCFile.PATH_SEPARATOR) ? parentPath : parentPath + OCFile.PATH_SEPARATOR;
+        if (parentPath != null) {
+            parentPath = parentPath.endsWith(OCFile.PATH_SEPARATOR) ? parentPath : parentPath + OCFile.PATH_SEPARATOR;
+        }
         return parentPath;
     }