瀏覽代碼

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

Carsten Braun 1 年之前
父節點
當前提交
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);
         }