mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 10:15:43 +03:00
Always check if the permalink is a spec permalink
See code for rationale
This commit is contained in:
parent
3e5a39d646
commit
199dfa7bf9
1 changed files with 3 additions and 0 deletions
|
@ -280,6 +280,9 @@ export function makeGroupPermalink(groupId) {
|
|||
}
|
||||
|
||||
export function isPermalinkHost(host: string): boolean {
|
||||
// Always check if the permalink is a spec permalink (callers are likely to call
|
||||
// parsePermalink after this function).
|
||||
if (new SpecPermalinkConstructor().isPermalinkHost(host)) return true;
|
||||
return getPermalinkConstructor().isPermalinkHost(host);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue