aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/HttpServer/Security/AuthorizationContext.cs
diff options
context:
space:
mode:
authorcrobibero <cody@robibe.ro>2020-06-17 06:52:15 -0600
committercrobibero <cody@robibe.ro>2020-06-17 06:52:15 -0600
commit4962e230af13933f6a087b78b16884da0e485688 (patch)
tree2402ec4a8d30863faee8f7eeab6882c91553393d /Emby.Server.Implementations/HttpServer/Security/AuthorizationContext.cs
parent29917699f0854f504452e62ee7be4bff0a4a206d (diff)
revert adding Jellyfin to auth header
Diffstat (limited to 'Emby.Server.Implementations/HttpServer/Security/AuthorizationContext.cs')
-rw-r--r--Emby.Server.Implementations/HttpServer/Security/AuthorizationContext.cs19
1 files changed, 3 insertions, 16 deletions
diff --git a/Emby.Server.Implementations/HttpServer/Security/AuthorizationContext.cs b/Emby.Server.Implementations/HttpServer/Security/AuthorizationContext.cs
index b9fca67bf..fb93fae3e 100644
--- a/Emby.Server.Implementations/HttpServer/Security/AuthorizationContext.cs
+++ b/Emby.Server.Implementations/HttpServer/Security/AuthorizationContext.cs
@@ -89,11 +89,6 @@ namespace Emby.Server.Implementations.HttpServer.Security
if (string.IsNullOrEmpty(token))
{
- token = headers["X-Jellyfin-Token"];
- }
-
- if (string.IsNullOrEmpty(token))
- {
token = headers["X-Emby-Token"];
}
@@ -210,11 +205,7 @@ namespace Emby.Server.Implementations.HttpServer.Security
/// <returns>Dictionary{System.StringSystem.String}.</returns>
private Dictionary<string, string> GetAuthorizationDictionary(IRequest httpReq)
{
- var auth = httpReq.Headers["X-Jellyfin-Authorization"];
- if (string.IsNullOrEmpty(auth))
- {
- auth = httpReq.Headers["X-Emby-Authorization"];
- }
+ var auth = httpReq.Headers["X-Emby-Authorization"];
if (string.IsNullOrEmpty(auth))
{
@@ -231,11 +222,7 @@ namespace Emby.Server.Implementations.HttpServer.Security
/// <returns>Dictionary{System.StringSystem.String}.</returns>
private Dictionary<string, string> GetAuthorizationDictionary(HttpRequest httpReq)
{
- var auth = httpReq.Headers["X-Jellyfin-Authorization"];
- if (string.IsNullOrEmpty(auth))
- {
- auth = httpReq.Headers["X-Emby-Authorization"];
- }
+ var auth = httpReq.Headers["X-Emby-Authorization"];
if (string.IsNullOrEmpty(auth))
{
@@ -265,7 +252,7 @@ namespace Emby.Server.Implementations.HttpServer.Security
return null;
}
- var acceptedNames = new[] { "MediaBrowser", "Emby", "Jellyfin" };
+ var acceptedNames = new[] { "MediaBrowser", "Emby" };
// It has to be a digest request
if (!acceptedNames.Contains(parts[0], StringComparer.OrdinalIgnoreCase))