Fix regression where navigation to @ links stopped working
parent
1afac0274e
commit
fcfdc685ac
|
@ -717,7 +717,8 @@ export class Client {
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
validatePageName(name);
|
const pagePart = name.split(/[@$]/)[0];
|
||||||
|
validatePageName(pagePart);
|
||||||
} catch (e: any) {
|
} catch (e: any) {
|
||||||
return this.flashNotification(e.message, "error");
|
return this.flashNotification(e.message, "error");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue