From 8682ee30dd8d1d654c79467bd5c0939c7339f214 Mon Sep 17 00:00:00 2001 From: Luke Pulverenti Date: Tue, 21 May 2013 02:17:07 -0400 Subject: [PATCH] fixes #294 - Dvd iso not mounting --- MediaBrowser.Api/Playback/BaseStreamingService.cs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/MediaBrowser.Api/Playback/BaseStreamingService.cs b/MediaBrowser.Api/Playback/BaseStreamingService.cs index 19b339cd74..9411a29c55 100644 --- a/MediaBrowser.Api/Playback/BaseStreamingService.cs +++ b/MediaBrowser.Api/Playback/BaseStreamingService.cs @@ -533,7 +533,10 @@ namespace MediaBrowser.Api.Playback if (video != null) { - inputPath = MediaEncoderHelpers.GetInputArgument(video, isoMount, out type); + if (!(video.VideoType == VideoType.Iso && isoMount == null)) + { + inputPath = MediaEncoderHelpers.GetInputArgument(video, isoMount, out type); + } } return MediaEncoder.GetInputArgument(inputPath, type);