1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-14 13:27:19 +08:00

Add back second removed condition

This commit is contained in:
Dean Herbert 2020-10-07 18:40:09 +09:00
parent b2dad67ade
commit 94a6e28565

View File

@ -61,6 +61,9 @@ namespace osu.Game.Updater
public async Task<bool> CheckForUpdateAsync()
{
if (!CanCheckForUpdate)
return false;
Task<bool> waitTask;
lock (updateTaskLock)