Skip to content

Commit

Permalink
Forcing window to pop up on deeplink
Browse files Browse the repository at this point in the history
  • Loading branch information
cowboycito committed Dec 23, 2022
1 parent 18ef187 commit f987ce5
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions desktop/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,7 @@ const mainWindow = (() => {

if (browserWindow) {
browserWindow.loadURL(deeplinkUrl);
browserWindow.show();
}
});
});
Expand Down Expand Up @@ -431,6 +432,7 @@ const mainWindow = (() => {
loadURL(browserWindow).then(() => {
if (deeplinkUrl) {
browserWindow.loadURL(deeplinkUrl);
browserWindow.show();
}

return undefined;
Expand Down

0 comments on commit f987ce5

Please sign in to comment.