mirror of
https://github.com/cdr/code-server.git
synced 2026-05-08 12:30:40 +02:00
Fix outgoing scheme transformation
Accidentally used local instead of remote. Fixes #1127.
This commit is contained in:
parent
766efd6079
commit
73cf8f34e3
1 changed files with 1 additions and 1 deletions
|
|
@ -16,7 +16,7 @@ module.exports = (remoteAuthority) => {
|
||||||
},
|
},
|
||||||
transformOutgoingScheme: (scheme) => {
|
transformOutgoingScheme: (scheme) => {
|
||||||
switch (scheme) {
|
switch (scheme) {
|
||||||
case "file": return "vscode-local";
|
case "file": return "vscode-remote";
|
||||||
default: return scheme;
|
default: return scheme;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue