Browse Source

tmpDir renamed to cryptomator

Jan-Peter Klein 1 month ago
parent
commit
50fa8e0608

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