mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-23 01:58:53 +01:00
Fix to use vscode scheme
This commit is contained in:
@@ -90,7 +90,7 @@ let request = (options: IXHROptions): Thenable<IXHRResponse> => {
|
||||
err ? e({ responseText: '', status: 404 }) : c({ responseText: result.toString(), status: 200 })
|
||||
});
|
||||
});
|
||||
} else if (Strings.startsWith(options.url, 'vscode-schema://')) {
|
||||
} else if (Strings.startsWith(options.url, 'vscode://')) {
|
||||
return connection.sendRequest(VSCodeContentRequest.type, options.url).then(responseText => {
|
||||
return {
|
||||
responseText: responseText,
|
||||
|
||||
Reference in New Issue
Block a user