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

This commit is contained in:
Luke Pulverenti 2013-05-26 21:23:46 -04:00
parent a53133c002
commit 82ce0e17e9

View file

@ -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)