Browse Source

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

Luke Pulverenti 12 years ago
parent
commit
82ce0e17e9
1 changed files with 5 additions and 0 deletions
  1. 5 0
      MediaBrowser.Api/SessionsService.cs

+ 5 - 0
MediaBrowser.Api/SessionsService.cs

@@ -121,6 +121,11 @@ namespace MediaBrowser.Api
                 throw new ResourceNotFoundException(string.Format("Session {0} not found.", request.Id));
                 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);
             var socket = session.WebSockets.OrderByDescending(i => i.LastActivityDate).FirstOrDefault(i => i.State == WebSocketState.Open);
 
 
             if (socket != null)
             if (socket != null)