aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/HttpServer
diff options
context:
space:
mode:
authorBaronGreenback <jimcartlidge@yahoo.co.uk>2020-12-23 17:25:34 +0000
committerBaronGreenback <jimcartlidge@yahoo.co.uk>2020-12-23 17:25:34 +0000
commit889e988167868c4a713214140a35502b727683e6 (patch)
tree7cea77414fea735be7288906dd628c47fe4b1beb /Emby.Server.Implementations/HttpServer
parent62702fa3eb5070ce8c57dc4e39551bcc4e64fa74 (diff)
parentf42208673facf26e475c9fad7a1e78b59358f3fa (diff)
Updated to latest unstable.
Diffstat (limited to 'Emby.Server.Implementations/HttpServer')
-rw-r--r--Emby.Server.Implementations/HttpServer/Security/SessionContext.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/HttpServer/Security/SessionContext.cs b/Emby.Server.Implementations/HttpServer/Security/SessionContext.cs
index 86914dea2..040b6b9e4 100644
--- a/Emby.Server.Implementations/HttpServer/Security/SessionContext.cs
+++ b/Emby.Server.Implementations/HttpServer/Security/SessionContext.cs
@@ -45,7 +45,7 @@ namespace Emby.Server.Implementations.HttpServer.Security
public User GetUser(object requestContext)
{
- return GetUser((HttpContext)requestContext);
+ return GetUser(((HttpRequest)requestContext).HttpContext);
}
}
}