From 6b0719db45fdd26c19ab800053d525da131faa93 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 7 Jan 2019 10:33:27 -0500 Subject: [PATCH] allow launching URLs without protocol than end with tld --- jslib | 2 +- src/app/vault/add-edit.component.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/jslib b/jslib index fc5fcb905f..e7464785e1 160000 --- a/jslib +++ b/jslib @@ -1 +1 @@ -Subproject commit fc5fcb905fe465e99e85540f6b645c0f11b6704d +Subproject commit e7464785e134e5d723a4901cf54c5dd1668efb5c diff --git a/src/app/vault/add-edit.component.ts b/src/app/vault/add-edit.component.ts index 7df474dfd7..2cd04ec2fa 100644 --- a/src/app/vault/add-edit.component.ts +++ b/src/app/vault/add-edit.component.ts @@ -74,7 +74,7 @@ export class AddEditComponent extends BaseAddEditComponent { } this.platformUtilsService.eventTrack('Launched Login URI'); - this.platformUtilsService.launchUri(uri.uri); + this.platformUtilsService.launchUri(uri.launchUri); } copy(value: string, typeI18nKey: string, aType: string) {