aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Session/SessionManager.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-11-23 10:46:16 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-11-23 10:46:16 -0500
commit4f09c1e06dab7cc8b260129648f5a54c77b8a4f9 (patch)
tree84666fd94143a2078c4ad2500301cd0c21a94c61 /Emby.Server.Implementations/Session/SessionManager.cs
parent77695f8abed3156de04c6bb2496c14a2ab3d90a8 (diff)
reduce dlna chatter
Diffstat (limited to 'Emby.Server.Implementations/Session/SessionManager.cs')
-rw-r--r--Emby.Server.Implementations/Session/SessionManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Session/SessionManager.cs b/Emby.Server.Implementations/Session/SessionManager.cs
index 411781b25..f49251da5 100644
--- a/Emby.Server.Implementations/Session/SessionManager.cs
+++ b/Emby.Server.Implementations/Session/SessionManager.cs
@@ -1182,7 +1182,7 @@ namespace Emby.Server.Implementations.Session
{
var sessions = Sessions.Where(i => i.IsActive && i.SessionController != null).ToList();
- var info = await _appHost.GetSystemInfo().ConfigureAwait(false);
+ var info = await _appHost.GetSystemInfo(cancellationToken).ConfigureAwait(false);
var tasks = sessions.Select(session => Task.Run(async () =>
{