TNetwork: Fix crash on wrong backend response

This commit is contained in:
Lion Kortlepel 2021-08-12 20:27:03 +02:00 committed by Lion
parent 31e9004011
commit 3fb227e468

View File

@ -312,6 +312,7 @@ void TNetwork::Authentication(SOCKET TCPSock) {
{ "key", RequestString } });
Sentry.SetTransaction(Application::GetBackendUrlForAuth() + Target);
Sentry.Log(SentryLevel::Info, "default", "backend returned 0 instead of json (" + std::to_string(ResponseCode) + ")");
return;
}
if (AuthResponse["username"].IsString() && AuthResponse["roles"].IsString()