Skip to content

Commit 68934bb

Browse files
committed
escape quotes until maven compiler issue is fixed
1 parent 2a23abb commit 68934bb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/org/cryptomator/linux/quickaccess/DolphinPlaces.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ public class DolphinPlaces implements QuickAccessService {
4040
private static final Path TMP_FILE = Path.of(System.getProperty("java.io.tmpdir"), "user-places.xbel.cryptomator.tmp");
4141
private static final Lock MODIFY_LOCK = new ReentrantLock();
4242
private static final String ENTRY_TEMPLATE = """
43-
<bookmark href="%s">
43+
<bookmark href=\"%s\">
4444
<title>%s</title>
4545
<info>
46-
<metadata owner="http://freedesktop.org">
46+
<metadata owner=\"http://freedesktop.org\">
4747
<bookmark:icon name="drive-harddisk-encrypted"/>
4848
</metadata>
49-
<metadata owner="https://cryptomator.org">
49+
<metadata owner=\"https://cryptomator.org\">
5050
<id>%s</id>
5151
</metadata>
5252
</info>

0 commit comments

Comments
 (0)