From fcfdc685ac64d918a2511296784f8f9f039f1c0b Mon Sep 17 00:00:00 2001 From: Zef Hemel Date: Mon, 6 Nov 2023 09:48:17 +0100 Subject: [PATCH] Fix regression where navigation to @ links stopped working --- web/client.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/web/client.ts b/web/client.ts index 4a63c698..1bb6bf86 100644 --- a/web/client.ts +++ b/web/client.ts @@ -717,7 +717,8 @@ export class Client { } try { - validatePageName(name); + const pagePart = name.split(/[@$]/)[0]; + validatePageName(pagePart); } catch (e: any) { return this.flashNotification(e.message, "error"); }