فهرست منبع

Do not attempt to extract internal subtitles if there are only MKS subtitles.

Carsten Braun 10 ماه پیش
والد
کامیت
e8239a7ee2
1فایلهای تغییر یافته به همراه5 افزوده شده و 0 حذف شده
  1. 5 0
      MediaBrowser.MediaEncoding/Subtitles/SubtitleEncoder.cs

+ 5 - 0
MediaBrowser.MediaEncoding/Subtitles/SubtitleEncoder.cs

@@ -635,6 +635,11 @@ namespace MediaBrowser.MediaEncoding.Subtitles
                     outputPath);
             }
 
+            if (outputPaths.Count == 0)
+            {
+                return;
+            }
+
             await ExtractSubtitlesForFile(inputPath, args, outputPaths, cancellationToken).ConfigureAwait(false);
         }