Fixed external subtitles were being filtered by show only desired embedded subtitles settings.

pull/1427/head
morpheus65535 3 years ago
parent d562faf151
commit d4aed7457a

@ -115,7 +115,7 @@ export function filterSubtitleBy(
const result = differenceWith(
subtitles,
languages,
(a, b) => a.code2 === b.code2
(a, b) => a.code2 === b.code2 || a.path !== null
);
return difference(subtitles, result);
}

Loading…
Cancel
Save