Skip to content

Commit

Permalink
NOISSUE handle error 201 in Auth code
Browse files Browse the repository at this point in the history
This is something I ran into when one of my accounts stopped working.
The auth token probably expired.

This should now be handled as a normal auth error, not a network failure.
  • Loading branch information
peterix committed Sep 2, 2017
1 parent 3ed9908 commit 6381bfd
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions api/logic/minecraft/auth/YggdrasilTask.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ void YggdrasilTask::processReply()
"</ul>"));
return;
// used for invalid credentials and similar errors. Fall through.
case QNetworkReply::ContentAccessDenied:
case QNetworkReply::ContentOperationNotPermittedError:
break;
default:
Expand Down

0 comments on commit 6381bfd

Please sign in to comment.