fix ssh url handling
This commit is contained in:
parent
32447ade1b
commit
32eeb6d0cf
6 changed files with 8 additions and 12 deletions
|
|
@ -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}) => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue