diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2020-12-20 13:54:32 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-20 13:54:32 +0100 |
| commit | 6274cf8fcca63c0ca59b70cecbadc60d5710e83a (patch) | |
| tree | bc7c93955dc5293c26c01b15efe84a146be38b8e | |
| parent | cc5d0af4c18cc2632f1a77a53d3bdef0be3d903b (diff) | |
| parent | 875562e580a1f36d0364c04af22bfd9c7234ef95 (diff) | |
Merge pull request #4803 from ryanpetris/fix-getuser
Fix Live TV Recording Scheduling
| -rw-r--r-- | Emby.Server.Implementations/HttpServer/Security/SessionContext.cs | 2 |
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); } } } |
