diff options
| author | dkanada <dkanada@users.noreply.github.com> | 2020-06-26 06:21:00 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-26 06:21:00 +0900 |
| commit | 57caa9fdba984d0c4813c642f2617be905205d49 (patch) | |
| tree | 5a1aae16a71a90850758f5200a03cce7c164e891 /Emby.Server.Implementations/Session/SessionManager.cs | |
| parent | d0bc93e947af39c012d1b643ca2a183841c72a66 (diff) | |
| parent | ef8bec23c4f1ce9b97a155913ed57bc387184e22 (diff) | |
Merge pull request #3435 from crobibero/revert-missing-fields
revert missing session fields
Diffstat (limited to 'Emby.Server.Implementations/Session/SessionManager.cs')
| -rw-r--r-- | Emby.Server.Implementations/Session/SessionManager.cs | 3 |
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; |
