1
0
mirror of https://github.com/bitwarden/desktop.git synced 2024-06-28 10:54:54 +02: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

@ -1 +1 @@
Subproject commit fc5fcb905fe465e99e85540f6b645c0f11b6704d
Subproject commit e7464785e134e5d723a4901cf54c5dd1668efb5c

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) {