aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Providers
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2020-12-04 14:53:09 -0500
committerGitHub <noreply@github.com>2020-12-04 14:53:09 -0500
commit670f7cacc394817b24d5edda4542843967b0cc53 (patch)
tree18f2c175d094dc3172af3857730281f704ea11d7 /MediaBrowser.Providers
parentf07a6c3c3ea13f0f1b60c420a6a73cfb875873aa (diff)
parentca5c20c9889f2c279f0b9d80ce776ddc8ee31ad1 (diff)
Merge pull request #4651 from crobibero/iso_manager
Remove IIsoMounter and IsoMounter
Diffstat (limited to 'MediaBrowser.Providers')
-rw-r--r--MediaBrowser.Providers/MediaInfo/FFProbeVideoInfo.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Providers/MediaInfo/FFProbeVideoInfo.cs b/MediaBrowser.Providers/MediaInfo/FFProbeVideoInfo.cs
index 6d39c091ef..74849a5221 100644
--- a/MediaBrowser.Providers/MediaInfo/FFProbeVideoInfo.cs
+++ b/MediaBrowser.Providers/MediaInfo/FFProbeVideoInfo.cs
@@ -619,7 +619,7 @@ namespace MediaBrowser.Providers.MediaInfo
item.RunTimeTicks = GetRuntime(primaryTitle);
}
- return _mediaEncoder.GetPrimaryPlaylistVobFiles(item.Path, null, titleNumber)
+ return _mediaEncoder.GetPrimaryPlaylistVobFiles(item.Path, titleNumber)
.Select(Path.GetFileName)
.ToArray();
}