1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 01:33:33 +00:00

Reverted prior change. Changed call to getHost

This commit is contained in:
Matt Smith
2020-07-13 15:47:55 -05:00
parent 49b796ebd6
commit 8223011248
2 changed files with 2 additions and 8 deletions

View File

@@ -62,7 +62,7 @@ export class LoginUriView implements View {
return null;
}
if (this._hostname == null && this.uri != null) {
this._hostname = Utils.getHostname(this.uri);
this._hostname = Utils.getHost(this.uri);
if (this._hostname === '') {
this._hostname = null;
}