This commit is contained in:
tamaina 2023-01-06 15:21:07 +00:00
parent a58771c230
commit ca0025b499

View file

@ -94,7 +94,7 @@ export class DownloadService {
@bindThis
public async downloadUrl(url: string, path: string): Promise<void> {
await this.pipeRequestToFile(this.gotUrl(url), path);
await this.pipeRequestToFile(this.fetchUrl(url), path);
this.logger.succ(`Download finished: ${chalk.cyan(url)}`);
}