Merge branch 'patch-2025.10.1' of https://github.com/iptv-org/epg into patch-2025.10.1

This commit is contained in:
freearhey
2025-10-25 03:33:46 +03:00

View File

@@ -109,7 +109,7 @@ async function main() {
channelsFromXML = channelsFromXML.filter((channel: Channel) => {
if (!options.lang) return true
return options.lang.includes(channel.lang)
return channel.lang ? options.lang.includes(channel.lang) : false
})
}