updated export + image link parsing fix

This commit is contained in:
zadam 2019-08-29 23:11:59 +02:00
parent 1c0b55e422
commit 89ed9027da
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -209,7 +209,7 @@ async function protectNoteRevisions(note) {
}
function findImageLinks(content, foundLinks) {
const re = /src="[^"]*\/api\/images\/([a-zA-Z0-9]+)\//g;
const re = /src="[^"]*api\/images\/([a-zA-Z0-9]+)\//g;
let match;
while (match = re.exec(content)) {