Merge pull request #3916 from smoogipoo/fix-getuser-request-failing

Fix API get user request never failing
This commit is contained in:
Dean Herbert 2018-12-26 16:32:01 +09:00 committed by GitHub
commit 7c1e3d66eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -145,7 +145,8 @@ namespace osu.Game.Online.API
if (!handleRequest(userReq))
{
Thread.Sleep(500);
if (State == APIState.Connecting)
State = APIState.Failing;
continue;
}