浏览代码

tmpDir renamed to cryptomator

Jan-Peter Klein 1 月之前
父节点
当前提交
50fa8e0608
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/main/java/org/cryptomator/common/recovery/RecoveryDirectory.java

+ 1 - 1
src/main/java/org/cryptomator/common/recovery/RecoveryDirectory.java

@@ -27,7 +27,7 @@ public final class RecoveryDirectory implements AutoCloseable {
 		FileAttribute<?> attr = PosixFilePermissions.asFileAttribute(
 				PosixFilePermissions.fromString("rwx------")
 		);
-		Path tempDir = Files.createTempDirectory("r", attr);
+		Path tempDir = Files.createTempDirectory("cryptomator", attr);
 		return new RecoveryDirectory(vaultPath, tempDir);
 	}