1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-16 08:13:42 +00:00

use send.bitwarden.com (#304)

This commit is contained in:
Kyle Spearrin
2021-03-11 10:08:28 -05:00
committed by GitHub
parent 5d32ba68ec
commit c8cab2a9e7

View File

@@ -74,7 +74,7 @@ export class AddEditComponent implements OnInit {
safariDeletionTimeOptions: TimeOption[];
safariExpirationTimeOptions: TimeOption[];
private webVaultUrl: string;
private sendLinkBaseUrl: string;
constructor(protected i18nService: I18nService, protected platformUtilsService: PlatformUtilsService,
protected environmentService: EnvironmentService, protected datePipe: DatePipe,
@@ -97,15 +97,17 @@ export class AddEditComponent implements OnInit {
{ name: i18nService.t('never'), value: null },
].concat([...this.deletionDateOptions]);
this.webVaultUrl = this.environmentService.getWebVaultUrl();
if (this.webVaultUrl == null) {
this.webVaultUrl = 'https://vault.bitwarden.com';
const webVaultUrl = this.environmentService.getWebVaultUrl();
if (webVaultUrl == null) {
this.sendLinkBaseUrl = 'https://send.bitwarden.com/#';
} else {
this.sendLinkBaseUrl = webVaultUrl + '/#/send/';
}
}
get link(): string {
if (this.send.id != null && this.send.accessId != null) {
return this.webVaultUrl + '/#/send/' + this.send.accessId + '/' + this.send.urlB64Key;
return this.sendLinkBaseUrl + this.send.accessId + '/' + this.send.urlB64Key;
}
return null;
}