diff --git a/web_src/js/index.js b/web_src/js/index.js
index aa684b046..97653c036 100644
--- a/web_src/js/index.js
+++ b/web_src/js/index.js
@@ -362,7 +362,7 @@ function initImagePaste(target) {
const name = img.name.substr(0, img.name.lastIndexOf('.'));
insertAtCursor(textarea, `![${name}]()`);
const data = await uploadFile(img, uploadUrl);
- replaceAndKeepCursor(textarea, `![${name}]()`, `![${name}](${AppSubUrl}/attachments/${data.uuid})`);
+ replaceAndKeepCursor(textarea, `![${name}]()`, `![${name}](/attachments/${data.uuid})`);
const input = $(``).val(data.uuid);
dropzoneFiles.appendChild(input[0]);
}
@@ -378,7 +378,7 @@ function initSimpleMDEImagePaste(simplemde, dropzone, files) {
const name = img.name.substr(0, img.name.lastIndexOf('.'));
const data = await uploadFile(img, uploadUrl);
const pos = simplemde.codemirror.getCursor();
- simplemde.codemirror.replaceRange(`![${name}](${AppSubUrl}/attachments/${data.uuid})`, pos);
+ simplemde.codemirror.replaceRange(`![${name}](/attachments/${data.uuid})`, pos);
const input = $(``).val(data.uuid);
files.append(input);
}