mirror of
https://github.com/iptv-org/iptv.git
synced 2025-05-13 02:20:03 -04:00
Fixes "formatter doesn't fill tags" issue #4097
This commit is contained in:
parent
dd3dc20a55
commit
67dc65a434
3 changed files with 11 additions and 7 deletions
|
@ -211,10 +211,10 @@ db.playlists = {
|
|||
return this.list
|
||||
},
|
||||
only(list = []) {
|
||||
return this.list.filter(playlist => list.includes(playlist.name))
|
||||
return this.list.filter(playlist => list.includes(playlist.filename))
|
||||
},
|
||||
except(list = []) {
|
||||
return this.list.filter(playlist => !list.includes(playlist.name))
|
||||
return this.list.filter(playlist => !list.includes(playlist.filename))
|
||||
},
|
||||
sortBy(fields) {
|
||||
this.list = utils.sortBy(this.list, fields)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue