1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-14 23:33:31 +00:00

allow launching URLs without protocol than end with tld

This commit is contained in:
Kyle Spearrin
2019-01-07 10:33:16 -05:00
parent 06736b97d1
commit e7c3d1048d
2 changed files with 2 additions and 2 deletions

2
jslib

Submodule jslib updated: fc5fcb905f...e7464785e1

View File

@@ -238,7 +238,7 @@ export class VaultComponent implements OnInit, OnDestroy {
if (cipher.login.canLaunch) {
menu.append(new remote.MenuItem({
label: this.i18nService.t('launch'),
click: () => this.platformUtilsService.launchUri(cipher.login.uri),
click: () => this.platformUtilsService.launchUri(cipher.login.launchUri),
}));
}
if (cipher.login.username != null) {