aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2014-02-13 11:50:59 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2014-02-13 11:50:59 -0500
commit44b2ef2f474b5424d145ac08decd899fe634b0da (patch)
tree2de848f680818e6e65cb28121a42174bfbdcd988
parentbe1ce0f80275a1718dc89dd65e2919e9eab8eb7b (diff)
try to fix head request
-rw-r--r--MediaBrowser.Api/Playback/Progressive/BaseProgressiveStreamingService.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/Playback/Progressive/BaseProgressiveStreamingService.cs b/MediaBrowser.Api/Playback/Progressive/BaseProgressiveStreamingService.cs
index 2837d748e..9c8c6bfbf 100644
--- a/MediaBrowser.Api/Playback/Progressive/BaseProgressiveStreamingService.cs
+++ b/MediaBrowser.Api/Playback/Progressive/BaseProgressiveStreamingService.cs
@@ -244,7 +244,7 @@ namespace MediaBrowser.Api.Playback.Progressive
{
using (response.Content)
{
- return ResultFactory.GetResult(null, response.ContentType, responseHeaders);
+ return ResultFactory.GetResult(new MemoryStream(), response.ContentType, responseHeaders);
}
}