Fix outgoing scheme transformation
Accidentally used local instead of remote. Fixes #1127.
This commit is contained in:
parent
766efd6079
commit
73cf8f34e3
@ -16,7 +16,7 @@ module.exports = (remoteAuthority) => {
|
||||
},
|
||||
transformOutgoingScheme: (scheme) => {
|
||||
switch (scheme) {
|
||||
case "file": return "vscode-local";
|
||||
case "file": return "vscode-remote";
|
||||
default: return scheme;
|
||||
}
|
||||
},
|
||||
|
Reference in New Issue
Block a user