Browse Source

reset domain to null if empty

PS-589-2fa-device-verification-settings
Kyle Spearrin 8 years ago
parent
commit
4694793785
  1. 5
      src/models/view/loginView.ts

5
src/models/view/loginView.ts

@ -42,6 +42,9 @@ export class LoginView implements View { @@ -42,6 +42,9 @@ export class LoginView implements View {
if (containerService) {
const platformUtilsService: PlatformUtilsService = containerService.getPlatformUtilsService();
this._domain = platformUtilsService.getDomain(this.uri);
if (this._domain === '') {
this._domain = null;
}
} else {
throw new Error('window.bitwardenContainerService not initialized.');
}
@ -70,7 +73,7 @@ export class LoginView implements View { @@ -70,7 +73,7 @@ export class LoginView implements View {
}
get isWebsite(): boolean {
return this.uri != null && (this.uri.indexOf('http://') > -1 || this.uri.indexOf('https://') > -1);
return this.uri != null && (this.uri.indexOf('http://') === 0 || this.uri.indexOf('https://') === 0);
}
get canLaunch(): boolean {

Loading…
Cancel
Save