Reduce refresh interval slightly

This commit is contained in:
Dean Herbert 2023-12-28 15:18:21 +09:00
parent 0ea62d0c5d
commit 6684987289
No known key found for this signature in database

View File

@ -103,7 +103,7 @@ namespace osu.Game.Screens.Menu
if (r.IsFaulted)
_ = r.Exception;
Scheduler.AddDelayed(checkForUpdates, TimeSpan.FromMinutes(15).TotalMilliseconds);
Scheduler.AddDelayed(checkForUpdates, TimeSpan.FromMinutes(5).TotalMilliseconds);
});
}