mirror of
https://github.com/stuff-by-3-random-dudes/UWUVCI-AIO-WPF
synced 2024-11-10 05:34:13 +00:00
Fixed downloader not appearing
This commit is contained in:
parent
cf2a38bcfc
commit
4c03801ec9
1 changed files with 1 additions and 2 deletions
|
@ -2223,14 +2223,13 @@ namespace UWUVCI_AIO_WPF
|
|||
ValidatePathsStillExist();
|
||||
if (Task.Run(() => CheckForInternetConnectionAsync()).GetAwaiter().GetResult())
|
||||
{
|
||||
Task.Run(() => Injection.Download(this)).GetAwaiter().GetResult();
|
||||
|
||||
DownloadWait dw = new DownloadWait("Downloading Base - Please Wait", "", this);
|
||||
try
|
||||
{
|
||||
dw.changeOwner(mw);
|
||||
}
|
||||
catch (Exception) { }
|
||||
Task.Run(() => Injection.Download(this)).GetAwaiter();
|
||||
dw.ShowDialog();
|
||||
Progress = 0;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue