On Windows, denormalize URI when opening link with app closed #304

Merged
alexliebowitz merged 1 commit from fix-link-focus-2 into master 2017-06-29 07:26:48 +02:00

View file

@ -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();