On Windows, denormalize URI when opening link with app closed

This commit is contained in:
Alex Liebowitz 2017-06-29 00:56:59 -04:00
parent e6f1dea9d5
commit ac5df086a9

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