1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-13 23:03:32 +00:00

Add support for helpers in environment service (#353)

This commit is contained in:
Oscar Hinton
2021-07-23 22:46:32 +02:00
committed by GitHub
parent 230e00e423
commit 4ec06bbd1e
7 changed files with 13 additions and 13 deletions

View File

@@ -35,11 +35,7 @@ export class StatusCommand {
}
private baseUrl(): string {
let url = this.envService.baseUrl;
if (url == null) {
url = 'https://bitwarden.com';
}
return url;
return this.envService.getUrls().base;
}
private async status(): Promise<string> {