mirror of
https://github.com/osukey/osukey.git
synced 2025-07-03 01:09:57 +09:00
Fix base UpdateManager thinking it can check for updates
This commit is contained in:
@ -20,7 +20,9 @@ namespace osu.Game.Updater
|
||||
/// <summary>
|
||||
/// Whether this UpdateManager should be or is capable of checking for updates.
|
||||
/// </summary>
|
||||
public bool CanCheckForUpdate => game.IsDeployedBuild;
|
||||
public bool CanCheckForUpdate => game.IsDeployedBuild &&
|
||||
// only implementations will actually check for updates.
|
||||
GetType() != typeof(UpdateManager);
|
||||
|
||||
private string lastVersion;
|
||||
|
||||
|
Reference in New Issue
Block a user