Fix api get user request never failing

This commit is contained in:
smoogipoo 2018-12-26 16:06:39 +09:00
parent 2b1466ef58
commit aeb2186539

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;
}