1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 18:07:23 +08:00

Remove duplicate calls to CheckForUpdatesAsync

This commit is contained in:
Dean Herbert 2020-06-12 18:05:23 +09:00
parent 6296cd62d0
commit 95f57ca88c
2 changed files with 0 additions and 3 deletions

View File

@ -35,7 +35,6 @@ namespace osu.Desktop.Updater
notificationOverlay = notification;
Splat.Locator.CurrentMutable.Register(() => new SquirrelLogger(), typeof(Splat.ILogger));
Schedule(() => Task.Run(CheckForUpdateAsync));
}
protected override async Task InternalCheckForUpdateAsync() => await checkForUpdateAsync();

View File

@ -28,8 +28,6 @@ namespace osu.Game.Updater
private void load(OsuGameBase game)
{
version = game.Version;
Schedule(() => Task.Run(CheckForUpdateAsync));
}
protected override async Task InternalCheckForUpdateAsync()