Update Playlist.js

This commit is contained in:
Aleksandr Statciuk 2021-08-02 21:15:33 +03:00
parent 573174c79d
commit b48457fe62

View File

@ -7,9 +7,7 @@ module.exports = class Playlist {
this.name = name
this.country = country
this.header = header
this.channels = items
.map(item => new Channel({ data: item, header, sourceUrl: url }))
.filter(channel => channel.url)
this.channels = items.map(item => new Channel(item)).filter(channel => channel.url)
this.updated = false
}