aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Session/SessionManager.cs
diff options
context:
space:
mode:
authorcrobibero <cody@robibe.ro>2020-06-24 15:09:15 -0600
committercrobibero <cody@robibe.ro>2020-06-24 15:09:15 -0600
commitef8bec23c4f1ce9b97a155913ed57bc387184e22 (patch)
tree322b45c84b9696131a25540cc9d129b46758ba3c /Emby.Server.Implementations/Session/SessionManager.cs
parentd5dad64e61535152bc781caf6f2275e48fdf7bf6 (diff)
revert missing session fields
Diffstat (limited to 'Emby.Server.Implementations/Session/SessionManager.cs')
-rw-r--r--Emby.Server.Implementations/Session/SessionManager.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Session/SessionManager.cs b/Emby.Server.Implementations/Session/SessionManager.cs
index 75fdedd10..d069d1ada 100644
--- a/Emby.Server.Implementations/Session/SessionManager.cs
+++ b/Emby.Server.Implementations/Session/SessionManager.cs
@@ -502,7 +502,8 @@ namespace Emby.Server.Implementations.Session
Client = appName,
DeviceId = deviceId,
ApplicationVersion = appVersion,
- Id = key.GetMD5().ToString("N", CultureInfo.InvariantCulture)
+ Id = key.GetMD5().ToString("N", CultureInfo.InvariantCulture),
+ ServerId = _appHost.SystemId
};
var username = user?.Username;