1
0

Fix regression where navigation to @ links stopped working

This commit is contained in:
Zef Hemel 2023-11-06 09:48:17 +01:00
parent 1afac0274e
commit fcfdc685ac

View File

@ -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");
}