Merge pull request #304 from lbryio/fix-link-focus-2

On Windows, denormalize URI when opening link with app closed
This commit is contained in:
alexliebowitz 2017-06-29 01:26:48 -04:00 committed by GitHub
commit fce702f737

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