Fixed critical dependency download issue (when not awaiting)

Changed the background task for downloading dependencies to be awaited.
This commit is contained in:
jp64k
2025-12-07 21:25:36 +01:00
parent eb0245dfe2
commit 047f84e9e7

View File

@@ -436,7 +436,7 @@ namespace AndroidSideloader
// Dependencies and RCLONE in background
if (!isOffline)
{
_ = Task.Run(() =>
await Task.Run(() =>
{
changeTitle("Downloading Dependencies...");
GetDependencies.downloadFiles();