fix ssh url handling

This commit is contained in:
Labhansh Agrawal 2023-05-06 10:22:45 +05:30
parent 32447ade1b
commit 32eeb6d0cf
6 changed files with 8 additions and 12 deletions

View file

@ -204,8 +204,8 @@ rpc.on('open file', ({path}) => {
store_.dispatch(uiActions.openFile(path));
});
rpc.on('open ssh', (url) => {
store_.dispatch(uiActions.openSSH(url));
rpc.on('open ssh', (parsedUrl) => {
store_.dispatch(uiActions.openSSH(parsedUrl));
});
rpc.on('update available', ({releaseName, releaseNotes, releaseUrl, canInstall}) => {