mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-05-24 02:02:29 -04:00
Fix inverted condition when authenticating with an ApiKey
This commit is contained in:
parent
9e601ba731
commit
2478c8fa64
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user