aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/Session/SessionWebSocketListener.cs
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2015-09-02 11:33:20 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2015-09-02 11:33:20 -0400
commit067479f2d1dcf40127ada01fbd452040a14ae877 (patch)
tree2e789d7206adb016f22d84db922f0703a856fd21 /MediaBrowser.Server.Implementations/Session/SessionWebSocketListener.cs
parent67ff9f59a1972b483c3a4728b7a09064939847ec (diff)
update ffmpeg info
Diffstat (limited to 'MediaBrowser.Server.Implementations/Session/SessionWebSocketListener.cs')
-rw-r--r--MediaBrowser.Server.Implementations/Session/SessionWebSocketListener.cs27
1 files changed, 17 insertions, 10 deletions
diff --git a/MediaBrowser.Server.Implementations/Session/SessionWebSocketListener.cs b/MediaBrowser.Server.Implementations/Session/SessionWebSocketListener.cs
index b473444ac..602bc4876 100644
--- a/MediaBrowser.Server.Implementations/Session/SessionWebSocketListener.cs
+++ b/MediaBrowser.Server.Implementations/Session/SessionWebSocketListener.cs
@@ -85,16 +85,23 @@ namespace MediaBrowser.Server.Implementations.Session
async void _httpServer_WebSocketConnecting(object sender, WebSocketConnectingEventArgs e)
{
- var token = e.QueryString["api_key"];
- if (!string.IsNullOrWhiteSpace(token))
- {
- var session = await GetSession(e.QueryString, e.Endpoint).ConfigureAwait(false);
-
- if (session == null)
- {
- //e.AllowConnection = false;
- }
- }
+ //var token = e.QueryString["api_key"];
+ //if (!string.IsNullOrWhiteSpace(token))
+ //{
+ // try
+ // {
+ // var session = await GetSession(e.QueryString, e.Endpoint).ConfigureAwait(false);
+
+ // if (session == null)
+ // {
+ // e.AllowConnection = false;
+ // }
+ // }
+ // catch (Exception ex)
+ // {
+ // _logger.ErrorException("Error getting session info", ex);
+ // }
+ //}
}
private Task<SessionInfo> GetSession(NameValueCollection queryString, string remoteEndpoint)