Fix inverted condition when authenticating with an ApiKey

This commit is contained in:
crobibero 2020-12-09 23:15:33 -07:00
parent 9e601ba731
commit 2478c8fa64
1 changed files with 2 additions and 2 deletions

View File

@ -185,11 +185,11 @@ namespace Emby.Server.Implementations.HttpServer.Security
updateToken = true;
}
authInfo.IsApiKey = true;
authInfo.IsApiKey = false;
}
else
{
authInfo.IsApiKey = false;
authInfo.IsApiKey = true;
}
if (updateToken)