From b60ca932e5e900d96c07f0f0dca69616afaaba27 Mon Sep 17 00:00:00 2001 From: Moritz Jung Date: Wed, 10 Sep 2025 13:08:49 +0200 Subject: [PATCH] Revert "Fix download image frontmatter formatting" --- src/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ts b/src/main.ts index f140aab..4c69dc4 100644 --- a/src/main.ts +++ b/src/main.ts @@ -355,7 +355,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);