mirror of
https://github.com/ppy/osu.git
synced 2024-12-16 18:32:54 +08:00
Return true while in gameplay
A `false` value marks the user as being on the latest release, and notifies them as such when clicking the button in settings. In reality, we don't know whether this is the case yet - we're just deferring the check. Somewhat minor change because the chance of a user manually going into settings and clicking the button is very small.
This commit is contained in:
parent
aee5f0ebf5
commit
7cc6fe3819
@ -56,7 +56,7 @@ namespace osu.Desktop.Updater
|
||||
if (isInGameplay)
|
||||
{
|
||||
scheduleRecheck = true;
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
// TODO: we should probably be checking if there's a more recent update, rather than shortcutting here.
|
||||
|
Loading…
Reference in New Issue
Block a user