mirror of https://github.com/vector-im/riot-web
Always check if the permalink is a spec permalink
See code for rationalepull/21833/head
parent
3e5a39d646
commit
199dfa7bf9
|
@ -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 New Issue