aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Api/Playback/BaseStreamingService.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Api/Playback/BaseStreamingService.cs')
-rw-r--r--MediaBrowser.Api/Playback/BaseStreamingService.cs20
1 files changed, 2 insertions, 18 deletions
diff --git a/MediaBrowser.Api/Playback/BaseStreamingService.cs b/MediaBrowser.Api/Playback/BaseStreamingService.cs
index 74eb9c012..fbdd1d680 100644
--- a/MediaBrowser.Api/Playback/BaseStreamingService.cs
+++ b/MediaBrowser.Api/Playback/BaseStreamingService.cs
@@ -1,5 +1,4 @@
-using System.Net.WebSockets;
-using MediaBrowser.Common.Extensions;
+using MediaBrowser.Common.Extensions;
using MediaBrowser.Common.IO;
using MediaBrowser.Controller.Channels;
using MediaBrowser.Controller.Configuration;
@@ -779,24 +778,9 @@ namespace MediaBrowser.Api.Playback
private bool SupportsThrottleWithStream
{
- // TODO: These checks are a hack.
- // They should go through the IHttpServer interface or IServerManager to find out this information
-
get
{
-#if __MonoCS__
- return true;
-#endif
-
- try
- {
- new ClientWebSocket();
- return true;
- }
- catch
- {
- return false;
- }
+ return false;
}
}