Skip to content

Commit c9127a6

Browse files
authored
1 parent 697936c commit c9127a6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/vs/platform/download/common/downloadIpc.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ export class DownloadServiceChannelClient implements IDownloadService {
3232
constructor(private channel: IChannel, private getUriTransformer: () => IURITransformer | null) { }
3333

3434
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);
35+
const uriTransformer = this.getUriTransformer();
36+
if (uriTransformer) {
37+
from = uriTransformer.transformOutgoingURI(from);
38+
to = uriTransformer.transformOutgoingURI(to);
3939
}
4040
await this.channel.call('download', [from, to]);
4141
}

0 commit comments

Comments
 (0)