aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2013-04-28 19:39:31 -0400
committerLuke Pulverenti <luke.pulverenti@gmail.com>2013-04-28 19:39:31 -0400
commitc8f895014dc5f333ec431c86bf0ea9d8d5b6cd51 (patch)
tree32bb99973e4347698e69b4debcbc4cb66169793d
parent2a5ba9e707fd68f9982cbab70fa2ca323bf72242 (diff)
don't cache video streams for now
-rw-r--r--MediaBrowser.Api/Playback/BaseStreamingService.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/Playback/BaseStreamingService.cs b/MediaBrowser.Api/Playback/BaseStreamingService.cs
index 6cc0b9241..a2894e1e7 100644
--- a/MediaBrowser.Api/Playback/BaseStreamingService.cs
+++ b/MediaBrowser.Api/Playback/BaseStreamingService.cs
@@ -633,7 +633,7 @@ namespace MediaBrowser.Api.Playback
ApiEntryPoint.Instance.OnTranscodingFinished(outputFilePath, TranscodingJobType);
- if (!exitCode.HasValue || exitCode.Value != 0)
+ if (!exitCode.HasValue || exitCode.Value != 0 || state.Item is Video)
{
Logger.Info("Deleting partial stream file(s) {0}", outputFilePath);