From 798237219f6abd9fa0683c4db89b50f0054f71ab Mon Sep 17 00:00:00 2001 From: kawaiizenbo <48113593+kawaiizenbo@users.noreply.github.com> Date: Mon, 1 Aug 2022 11:14:37 -0700 Subject: [PATCH] make it not broken --- RepoFullDownloader-Core/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/RepoFullDownloader-Core/Program.cs b/RepoFullDownloader-Core/Program.cs index e7475e9..eba2638 100644 --- a/RepoFullDownloader-Core/Program.cs +++ b/RepoFullDownloader-Core/Program.cs @@ -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); }