mirror of
https://github.com/bitwarden/browser
synced 2025-12-17 16:53:34 +00:00
[PS-1123] Improve hostname and domain retrieval (#3168)
* Add test cases from previous PR https://github.com/bitwarden/jslib/pull/547 * Install tldts as replacement for tldjs * Use tldts for hostname and domain retrieval/validation * Remove usage of old tldjs.noop-implementation * Add handling of about protocol * Remove usage of tldEndingRegex and use tldts check instead * Uninstall @types/tldjs and tldjs * Updated package-lock.json * Fix accessibility cookie check * Rename loginUriView.spec to login-uri-view.spec * Add test for getDomain failing file links * getHostName - Return null when given, data, about or file links
This commit is contained in:
committed by
GitHub
parent
94e9744d06
commit
8c59eef257
@@ -79,7 +79,7 @@ export class AccessibilityCookieComponent {
|
||||
}
|
||||
|
||||
async submit() {
|
||||
if (Utils.getDomain(this.accessibilityForm.value.link) !== "accounts.hcaptcha.com") {
|
||||
if (Utils.getHostname(this.accessibilityForm.value.link) !== "accounts.hcaptcha.com") {
|
||||
this.platformUtilsService.showToast(
|
||||
"error",
|
||||
this.i18nService.t("errorOccurred"),
|
||||
|
||||
Reference in New Issue
Block a user