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); } }