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 697936c commit c9127a6Copy full SHA for c9127a6
src/vs/platform/download/common/downloadIpc.ts
@@ -32,10 +32,10 @@ export class DownloadServiceChannelClient implements IDownloadService {
32
constructor(private channel: IChannel, private getUriTransformer: () => IURITransformer | null) { }
33
34
async download(from: URI, to: URI): Promise<void> {
35
- const uriTransfomer = this.getUriTransformer();
36
- if (uriTransfomer) {
37
- from = uriTransfomer.transformOutgoingURI(from);
38
- to = uriTransfomer.transformOutgoingURI(to);
+ const uriTransformer = this.getUriTransformer();
+ if (uriTransformer) {
+ from = uriTransformer.transformOutgoingURI(from);
+ to = uriTransformer.transformOutgoingURI(to);
39
}
40
await this.channel.call('download', [from, to]);
41
0 commit comments