throw an exception when a session doesn't support remote control

pull/702/head
Luke Pulverenti 11 years ago
parent a53133c002
commit 82ce0e17e9

@ -121,6 +121,11 @@ namespace MediaBrowser.Api
throw new ResourceNotFoundException(string.Format("Session {0} not found.", request.Id));
}
if (!session.SupportsRemoteControl)
{
throw new ArgumentException(string.Format("Session {0} does not support remote control.", session.Id));
}
var socket = session.WebSockets.OrderByDescending(i => i.LastActivityDate).FirstOrDefault(i => i.State == WebSocketState.Open);
if (socket != null)

Loading…
Cancel
Save