aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Session/SessionManager.cs
diff options
context:
space:
mode:
authorMax Git <rotvel@gmail.com>2020-07-02 23:50:13 +0200
committerMax Git <rotvel@gmail.com>2020-07-02 23:50:13 +0200
commit3588ee5229b76bca9417813e208e86492e06d609 (patch)
tree01131e5776246875ed5a538a71b2bd8a7f1c0c6f /Emby.Server.Implementations/Session/SessionManager.cs
parent1c84a31b22fa8708ad3c0c901abda4aac903f28d (diff)
parent5caddb242beba3cbaa0c1ca94f7fa07f73309ddb (diff)
Merge branch 'master' into feature/ffmpeg-version-check
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;