1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 03:27:24 +08:00

Fix update notification not correctly restarting the game (#5229)

Fix update notification not correctly restarting the game
This commit is contained in:
Dean Herbert 2019-07-04 00:37:05 +09:00 committed by GitHub
commit a417bcb0ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -129,7 +129,7 @@ namespace osu.Desktop.Updater
Activated = () => Activated = () =>
{ {
updateManager.PrepareUpdateAsync() updateManager.PrepareUpdateAsync()
.ContinueWith(_ => Schedule(() => game.GracefullyExit())); .ContinueWith(_ => updateManager.Schedule(() => game.GracefullyExit()));
return true; return true;
} }
}; };