From 415a086610808b108697f21f1989a9cadd15f4c8 Mon Sep 17 00:00:00 2001 From: ltctceplrm <14954927+ltctceplrm@users.noreply.github.com> Date: Wed, 10 Sep 2025 01:41:27 +0200 Subject: [PATCH] Revert imagepath double quotes --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index b4aac01..42a3ed2 100644 --- a/src/main.ts +++ b/src/main.ts @@ -352,7 +352,7 @@ export default class MediaDbPlugin extends Plugin { } // Update model to use local image path - mediaTypeModel.image = `"[[${imagePath}]]"`; + mediaTypeModel.image = `[[${imagePath}]]`; return true; } catch (e) { console.warn('MDB | Failed to download image:', e);