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 {
|
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);
|
return getPermalinkConstructor().isPermalinkHost(host);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue