We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f5edc26 commit 6010baaCopy full SHA for 6010baa
src/vs/platform/download/common/downloadService.ts
@@ -25,7 +25,7 @@ export class DownloadService implements IDownloadService {
25
await this.fileService.copy(resource, target);
26
return;
27
}
28
- const options = { type: 'GET', url: resource.toString() };
+ const options = { type: 'GET', url: resource.toString(true) };
29
const context = await this.requestService.request(options, cancellationToken);
30
if (context.res.statusCode === 200) {
31
await this.fileService.writeFile(target, context.stream);
0 commit comments