make it not broken

This commit is contained in:
kawaiizenbo 2022-08-01 11:14:37 -07:00
parent 754ea09500
commit 798237219f

View file

@ -196,7 +196,7 @@ namespace RepoFullDownloader_Core
}
using (WebClient wc = new WebClient())
{
wc.DownloadFileAsync(new Uri(link + p.link), fileToDownload);
wc.DownloadFile(new Uri(link + p.link), fileToDownload);
}
Console.WriteLine("Successfully downloaded " + link + p.link + " as " + fileToDownload);
}