瀏覽代碼

add null check

Andy Scherzinger 5 年之前
父節點
當前提交
2f60b75fc5
共有 1 個文件被更改,包括 3 次插入1 次删除
  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;
     }