mirror of
https://github.com/iptv-org/iptv.git
synced 2025-05-12 10:00:05 -04:00
Fixes grouping issue (#5929)
This commit is contained in:
parent
a30da4b78d
commit
ab86441969
3 changed files with 37 additions and 6 deletions
|
@ -219,6 +219,7 @@ async function generateIndexCountry() {
|
|||
.map(item => {
|
||||
const newItem = _.cloneDeep(item)
|
||||
newItem.group_title = ''
|
||||
newItem.categories = []
|
||||
return newItem
|
||||
})
|
||||
for (const country of _.sortBy(Object.values(countries), ['name'])) {
|
||||
|
@ -254,6 +255,7 @@ async function generateIndexLanguage() {
|
|||
.map(item => {
|
||||
const newItem = _.cloneDeep(item)
|
||||
newItem.group_title = ''
|
||||
newItem.categories = []
|
||||
return newItem
|
||||
})
|
||||
for (const language of languages) {
|
||||
|
@ -289,6 +291,7 @@ async function generateIndexRegion() {
|
|||
.map(item => {
|
||||
const newItem = _.cloneDeep(item)
|
||||
newItem.group_title = ''
|
||||
newItem.categories = []
|
||||
return newItem
|
||||
})
|
||||
for (const region of regions) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue