1
0
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:
Dan Balasescu 2024-10-07 19:35:09 +09:00
parent aee5f0ebf5
commit 7cc6fe3819
No known key found for this signature in database

View File

@ -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.