Fix updates downloading in non-deploy builds.

This commit is contained in:
Dean Herbert 2017-02-23 00:41:04 +09:00
parent 202976c0c3
commit 74ea5e7343
1 changed files with 2 additions and 1 deletions

View File

@ -103,7 +103,8 @@ private void load(NotificationManager notification, OsuColour colours, TextureSt
}
};
updateChecker();
if (IsDeployedBuild)
updateChecker();
}
protected override void LoadComplete()