Skip to content

Commit

Permalink
ar(fix): services
Browse files Browse the repository at this point in the history
  • Loading branch information
angeloreale committed Aug 21, 2024
1 parent b253eed commit 1bddd5f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const itsReady = () => {
mainWindow.focus();
// the commandLine is array of strings in which last element is deep link url
dialog.showErrorBox('Welcome Back', `You arrived from: ${commandLine.pop()}`);
mainWindow.loadURL(commandLine.pop().replace('web+dreampip://', 'http://'));
mainWindow.loadURL(commandLine.pop().replace('web+dreampip://', 'https://'));
}
});

Expand All @@ -60,7 +60,7 @@ const itsReady = () => {
mainWindow.focus();
// the commandLine is array of strings in which last element is deep link url
// dialog.showErrorBox('Welcome Back', `You arrived from: ${commandLine.pop()}`)
mainWindow.loadURL(url.replace('web+dreampip://', 'http://'));
mainWindow.loadURL(url.replace('web+dreampip://', 'https://'));
}
});
};
Expand Down

0 comments on commit 1bddd5f

Please sign in to comment.