From 1f9314aaa812bd58cc8e9a73010500f50ee730c6 Mon Sep 17 00:00:00 2001 From: Vanessa Date: Wed, 16 Jul 2025 22:36:00 +0800 Subject: [PATCH] :art: https://github.com/siyuan-note/siyuan/issues/15308 --- app/src/util/processMessage.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/util/processMessage.ts b/app/src/util/processMessage.ts index e95e35659..3c0d4ae57 100644 --- a/app/src/util/processMessage.ts +++ b/app/src/util/processMessage.ts @@ -35,7 +35,7 @@ export const processMessage = (response: IWebSocketData) => { if ("reloadui" === response.cmd) { const reloadByMode = (mode: string) => { if (mode) { - window.location.pathname = "stage/build/" + mode; + window.location.pathname = `stage/build/${mode}/`; } else { window.location.reload(); }