From 819decde761b9ab706d2479a67c210a530689ddd Mon Sep 17 00:00:00 2001 From: Dan Balasescu Date: Fri, 13 Jun 2025 22:13:07 +0900 Subject: [PATCH] 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. --- osu.Desktop/Updater/VelopackUpdateManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Desktop/Updater/VelopackUpdateManager.cs b/osu.Desktop/Updater/VelopackUpdateManager.cs index 12a8b7a05d..475d14e1d7 100644 --- a/osu.Desktop/Updater/VelopackUpdateManager.cs +++ b/osu.Desktop/Updater/VelopackUpdateManager.cs @@ -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); } }