From cfc539b84a68826cb15500a8f05140b26e2f07b4 Mon Sep 17 00:00:00 2001 From: Vanessa Date: Fri, 21 Nov 2025 23:03:44 +0800 Subject: [PATCH] :art: https://github.com/siyuan-note/siyuan/pull/16415 --- app/src/protyle/toolbar/util.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/protyle/toolbar/util.ts b/app/src/protyle/toolbar/util.ts index 1978002c9..c49c9483a 100644 --- a/app/src/protyle/toolbar/util.ts +++ b/app/src/protyle/toolbar/util.ts @@ -237,7 +237,7 @@ export const copyTextByType = async (ids: string[], const response = await fetchSyncPost("/api/filetree/getHPathByID", {id}); text += response.data; } else if (type === "webURL") { - text += `${window.location.origin}/?id=${id}`; + text += `${window.location.origin}?id=${id}`; } else if (type === "id") { text += id; }