From 6508895dccc9b6ec8e54f45a3db895962d5eb667 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Thu, 25 Jan 2018 14:32:29 -0500 Subject: [PATCH] add options --- src/services/desktopPlatformUtils.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/services/desktopPlatformUtils.service.ts b/src/services/desktopPlatformUtils.service.ts index 112fcddab7..8447e9cf40 100644 --- a/src/services/desktopPlatformUtils.service.ts +++ b/src/services/desktopPlatformUtils.service.ts @@ -100,7 +100,7 @@ export class DesktopPlatformUtilsService implements PlatformUtilsService { return true; } - launchUri(uri: string): void { + launchUri(uri: string, options?: any): void { shell.openExternal(uri); }