Fix outgoing scheme transformation

Accidentally used local instead of remote.

Fixes #1127.
This commit is contained in:
Asher 2019-10-30 10:32:57 -05:00
parent 766efd6079
commit 73cf8f34e3
No known key found for this signature in database
GPG Key ID: D63C1EF81242354A
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ module.exports = (remoteAuthority) => {
},
transformOutgoingScheme: (scheme) => {
switch (scheme) {
case "file": return "vscode-local";
case "file": return "vscode-remote";
default: return scheme;
}
},