1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-06-27 23:28:38 +02:00

Desktop: Fixes #3267: Fixed issue with invalid image paths when config path contains spaces

This commit is contained in:
Laurent Cozic
2020-05-25 09:52:10 +01:00
parent b126c761cd
commit 8c338675d2
4 changed files with 17 additions and 3 deletions

View File

@ -18,6 +18,7 @@ const markdownUtils = {
escapeLinkUrl(url) {
url = url.replace(/\(/g, '%28');
url = url.replace(/\)/g, '%29');
url = url.replace(/ /g, '%20');
return url;
},