From e937f1b6012cd58860efe35069e72bc06549581e Mon Sep 17 00:00:00 2001 From: contributor Date: Tue, 18 Nov 2025 10:32:33 +0200 Subject: [PATCH] shareUrl: use URL interface instead of string manipulations --- apps/client/src/widgets/shared_info.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/client/src/widgets/shared_info.tsx b/apps/client/src/widgets/shared_info.tsx index cb98027c2..bd0b72bc2 100644 --- a/apps/client/src/widgets/shared_info.tsx +++ b/apps/client/src/widgets/shared_info.tsx @@ -24,8 +24,7 @@ export default function SharedInfo() { const shareId = getShareId(note); if (syncServerHost) { - const cleanedServerHost = syncServerHost.replace(/\/$/, ""); - link = `${cleanedServerHost}/share/${shareId}`; + link = new URL(`/share/${shareId}`, syncServerHost).href; } else { let host = location.host; if (host.endsWith("/")) {