mirror of https://github.com/ppy/osu
Fix base UpdateManager thinking it can check for updates
This commit is contained in:
parent
35f577375c
commit
89cf146d18
|
@ -20,7 +20,9 @@ public class UpdateManager : CompositeDrawable
|
|||
/// <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;
|
||||
|
||||
|
|
Loading…
Reference in New Issue