diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-05-21 02:17:07 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-05-21 02:17:07 -0400 |
| commit | 8682ee30dd8d1d654c79467bd5c0939c7339f214 (patch) | |
| tree | ab63aaee4b3ad7dc54adfe88fac70d30e8cb4734 | |
| parent | 131ccc932eb5ef018a87c2f7d623f05327f6d307 (diff) | |
fixes #294 - Dvd iso not mounting
| -rw-r--r-- | MediaBrowser.Api/Playback/BaseStreamingService.cs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/MediaBrowser.Api/Playback/BaseStreamingService.cs b/MediaBrowser.Api/Playback/BaseStreamingService.cs index 19b339cd7..9411a29c5 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); |
