mirror of
https://github.com/bitwarden/browser
synced 2025-12-15 07:43:35 +00:00
Merge pull request #123 from bitwarden/malformed-url-fix
Prevent malformed URLs from blocking the loading of the current tab
This commit is contained in:
@@ -204,9 +204,14 @@ export class Utils {
|
||||
} catch (e) { }
|
||||
}
|
||||
|
||||
const domain = tldjs != null && tldjs.getDomain != null ? tldjs.getDomain(uriString) : null;
|
||||
if (domain != null) {
|
||||
return domain;
|
||||
try {
|
||||
const domain = tldjs != null && tldjs.getDomain != null ? tldjs.getDomain(uriString) : null;
|
||||
|
||||
if (domain != null) {
|
||||
return domain;
|
||||
}
|
||||
} catch {
|
||||
return null;
|
||||
}
|
||||
|
||||
return null;
|
||||
|
||||
Reference in New Issue
Block a user