aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Session/SessionWebSocketListener.cs
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2017-04-17 16:33:52 -0400
committerGitHub <noreply@github.com>2017-04-17 16:33:52 -0400
commitf0f3ca8c181b4144cbd21fb545d0629e92a9529b (patch)
treeebf4e2680ef00483b38618d97e7df26ea3da2fcd /Emby.Server.Implementations/Session/SessionWebSocketListener.cs
parent315541a686858eeab84f73a4fcad1a11c1ee15c7 (diff)
parent6a66aef608a0caa567f603edbd9a4e3466fda469 (diff)
Merge pull request #2584 from MediaBrowser/dev
Dev
Diffstat (limited to 'Emby.Server.Implementations/Session/SessionWebSocketListener.cs')
-rw-r--r--Emby.Server.Implementations/Session/SessionWebSocketListener.cs6
1 files changed, 2 insertions, 4 deletions
diff --git a/Emby.Server.Implementations/Session/SessionWebSocketListener.cs b/Emby.Server.Implementations/Session/SessionWebSocketListener.cs
index 336c2caee..478f9da71 100644
--- a/Emby.Server.Implementations/Session/SessionWebSocketListener.cs
+++ b/Emby.Server.Implementations/Session/SessionWebSocketListener.cs
@@ -289,7 +289,6 @@ namespace Emby.Server.Implementations.Session
var itemId = vals[0];
- var queueableMediaTypes = string.Empty;
var canSeek = true;
if (vals.Length > 1)
@@ -298,15 +297,14 @@ namespace Emby.Server.Implementations.Session
}
if (vals.Length > 2)
{
- queueableMediaTypes = vals[2];
+ // vals[2] used to be QueueableMediaTypes
}
var info = new PlaybackStartInfo
{
CanSeek = canSeek,
ItemId = itemId,
- SessionId = session.Id,
- QueueableMediaTypes = queueableMediaTypes.Split(',').ToList()
+ SessionId = session.Id
};
if (vals.Length > 3)