mirror of
https://github.com/morpheus65535/bazarr.git
synced 2024-11-10 17:13:35 +08:00
Fixed external subtitles were being filtered by show only desired embedded subtitles settings.
This commit is contained in:
parent
d562faf151
commit
d4aed7457a
1 changed files with 1 additions and 1 deletions
|
@ -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…
Reference in a new issue