1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-13 20:33:35 +08:00

Remove no-longer existing argument

I'm not entirely sure how this works, but CI was testing against the
updated Velopack package, whereas my local package was outdated and had
4 args.

Previous commit merges master to update the package version, this commit
fixes the args.
This commit is contained in:
Dan Balasescu
2025-06-13 22:13:07 +09:00
Unverified
parent 1ba702b7ad
commit 819decde76
+1 -1
View File
@@ -101,7 +101,7 @@ namespace osu.Desktop.Updater
progressNotification.StartDownload();
runOutsideOfGameplay(() => notificationOverlay.Post(progressNotification), cts.Token);
await updateManager.DownloadUpdatesAsync(update, p => progressNotification.Progress = p / 100f, false, cts.Token).ConfigureAwait(false);
await updateManager.DownloadUpdatesAsync(update, p => progressNotification.Progress = p / 100f, cts.Token).ConfigureAwait(false);
runOutsideOfGameplay(() => progressNotification.State = ProgressNotificationState.Completed, cts.Token);
}
}