From e7c3d1048d980840e75de2a7cd0c8d4e2884ec43 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 7 Jan 2019 10:33:16 -0500 Subject: [PATCH] allow launching URLs without protocol than end with tld --- jslib | 2 +- src/app/vault/vault.component.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/jslib b/jslib index fc5fcb90..e7464785 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit fc5fcb905fe465e99e85540f6b645c0f11b6704d +Subproject commit e7464785e134e5d723a4901cf54c5dd1668efb5c diff --git a/src/app/vault/vault.component.ts b/src/app/vault/vault.component.ts index 54f15794..f1de6656 100644 --- a/src/app/vault/vault.component.ts +++ b/src/app/vault/vault.component.ts @@ -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) {