aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Session/SessionManager.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-05-30 18:22:15 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-05-30 18:22:15 -0400
commit300c3b7fd6718c4ccc0847e78547a01d5f1b6f71 (patch)
treed4b68bee1ef47beb581a15b8cf0993a7d748ef31 /MediaBrowser.Server.Implementations/Session/SessionManager.cs
parent3387dac01d7125f830a77f5d0446fda336e294cd (diff)
standardize knowledge of supported image extensions
Diffstat (limited to 'MediaBrowser.Server.Implementations/Session/SessionManager.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Session/SessionManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Server.Implementations/Session/SessionManager.cs b/MediaBrowser.Server.Implementations/Session/SessionManager.cs
index 6c1768fd8..29ce2698c 100644
--- a/MediaBrowser.Server.Implementations/Session/SessionManager.cs
+++ b/MediaBrowser.Server.Implementations/Session/SessionManager.cs
@@ -185,7 +185,7 @@ namespace MediaBrowser.Server.Implementations.Session
connection.DeviceName = deviceName;
- connection.UserId = user == null ? (Guid?)null : user.Id;
+ connection.User = user;
return connection;
}