1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-03 00:20:35 +02:00

allow launching URLs without protocol than end with tld

This commit is contained in:
Kyle Spearrin 2019-01-07 10:33:27 -05:00
parent 9728116836
commit 6b0719db45
2 changed files with 2 additions and 2 deletions

2
jslib

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

View File

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