From ac5df086a9139c8e33f57ceb8108b4f48a0514e1 Mon Sep 17 00:00:00 2001 From: Alex Liebowitz Date: Thu, 29 Jun 2017 00:56:59 -0400 Subject: [PATCH] On Windows, denormalize URI when opening link with app closed --- app/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/main.js b/app/main.js index c64db64a1..35a50f224 100644 --- a/app/main.js +++ b/app/main.js @@ -174,7 +174,7 @@ function createWindow () { function handleOpenUriRequested(uri) { if (!win) { // Window not created yet, so store up requested URI for when it is - openUri = uri; + openUri = processRequestedUri(uri); } else { if (win.isMinimized()) { win.restore(); -- 2.45.2