aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Implementations/HttpServer/HttpResultFactory.cs
diff options
context:
space:
mode:
Diffstat (limited to 'MediaBrowser.Server.Implementations/HttpServer/HttpResultFactory.cs')
-rw-r--r--MediaBrowser.Server.Implementations/HttpServer/HttpResultFactory.cs5
1 files changed, 0 insertions, 5 deletions
diff --git a/MediaBrowser.Server.Implementations/HttpServer/HttpResultFactory.cs b/MediaBrowser.Server.Implementations/HttpServer/HttpResultFactory.cs
index f234674d8..b26cf5b76 100644
--- a/MediaBrowser.Server.Implementations/HttpServer/HttpResultFactory.cs
+++ b/MediaBrowser.Server.Implementations/HttpServer/HttpResultFactory.cs
@@ -706,11 +706,6 @@ namespace MediaBrowser.Server.Implementations.HttpServer
public object GetAsyncStreamWriter(IAsyncStreamSource streamSource)
{
- if (streamSource as IHttpResult != null)
- {
- return new AsyncStreamWriterEx(streamSource);
- }
-
return new AsyncStreamWriter(streamSource);
}
}