Andy Scherzinger 4 éve
szülő
commit
2f60b75fc5

+ 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;
     }