From f32449f83dfbc51f1308ef17045258d051765263 Mon Sep 17 00:00:00 2001 From: Vanessa Date: Thu, 10 Jul 2025 10:13:15 +0800 Subject: [PATCH] :art: https://github.com/siyuan-note/siyuan/issues/15260 --- app/src/util/image.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/app/src/util/image.ts b/app/src/util/image.ts index 3fe7edbbf..9c9c83ea9 100644 --- a/app/src/util/image.ts +++ b/app/src/util/image.ts @@ -3,6 +3,7 @@ export const getCompressURL = (url: string) => { (url.endsWith(".png") || url.endsWith(".jpg") || url.endsWith(".jpeg"))) { return url + "?style=thumb"; } + return url; }; export const removeCompressURL = (url: string) => {