From c8f895014dc5f333ec431c86bf0ea9d8d5b6cd51 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Sun, 28 Apr 2013 19:39:31 -0400 Subject: [PATCH] don't cache video streams for now --- MediaBrowser.Api/Playback/BaseStreamingService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);