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

This commit is contained in:
Carsten Braun
2024-09-27 14:07:55 +02:00
parent 84cebeae64
commit e8239a7ee2

View File

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