We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eae20da commit b999064Copy full SHA for b999064
src/main/java/org/cryptomator/linux/quickaccess/DolphinPlaces.java
@@ -35,7 +35,7 @@ public class DolphinPlaces implements QuickAccessService {
35
36
private static final int MAX_FILE_SIZE = 1 << 15; //xml is quite verbose
37
private static final Path PLACES_FILE = Path.of(System.getProperty("user.home"), ".local/share/user-places.xbel");
38
- private static final Path TMP_FILE = PLACES_FILE.resolveSibling("user-places.xbel.cryptomator.tmp");
+ private static final Path TMP_FILE = Path.of(System.getProperty("java.io.tmpdir"), "user-places.xbel.cryptomator.tmp");
39
private static final Lock MODIFY_LOCK = new ReentrantLock();
40
private static final String ENTRY_TEMPLATE = """
41
<bookmark href="%s">
0 commit comments