aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/HttpServer/Security/AuthService.cs
diff options
context:
space:
mode:
authorMichalis Adamidis <gsnerf@gsnerf.de>2014-09-14 18:00:44 +0200
committerMichalis Adamidis <gsnerf@gsnerf.de>2014-09-14 18:00:44 +0200
commit411a0531e0a71b2d458b5b3a8a9951ca763ca09a (patch)
tree871614a2cab9da0aa95d1d1f9f350d80fcf56271 /MediaBrowser.Server.Implementations/HttpServer/Security/AuthService.cs
parent4f3ea6c6c3cdde7f4b8d21dc97c711635d73b4e0 (diff)
parent6a177d21478774b3ea1a5adc606935bb3aff65bf (diff)
Merge branch 'master' of https://github.com/MediaBrowser/MediaBrowser
Diffstat (limited to 'MediaBrowser.Server.Implementations/HttpServer/Security/AuthService.cs')
-rw-r--r--MediaBrowser.Server.Implementations/HttpServer/Security/AuthService.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/HttpServer/Security/AuthService.cs b/MediaBrowser.Server.Implementations/HttpServer/Security/AuthService.cs
index 1294368f1..ea0982491 100644
--- a/MediaBrowser.Server.Implementations/HttpServer/Security/AuthService.cs
+++ b/MediaBrowser.Server.Implementations/HttpServer/Security/AuthService.cs
@@ -69,7 +69,7 @@ namespace MediaBrowser.Server.Implementations.HttpServer.Security
var user = string.IsNullOrWhiteSpace(auth.UserId)
? null
- : UserManager.GetUserById(new Guid(auth.UserId));
+ : UserManager.GetUserById(auth.UserId);
if (user == null & !string.IsNullOrWhiteSpace(auth.UserId))
{