Update index_category_m3u.js

pull/6435/head
Aleksandr Statciuk 3 years ago
parent 081fcac929
commit 0c3a1df90f

@ -13,11 +13,13 @@ module.exports = async function (streams = []) {
return
}
stream.categories.forEach(category => {
const item = _.cloneDeep(stream)
item.group_title = category.name
items.push(item)
})
stream.categories
.filter(c => c)
.forEach(category => {
const item = _.cloneDeep(stream)
item.group_title = category.name
items.push(item)
})
})
items = _.sortBy(items, item => {

Loading…
Cancel
Save