mirror of
https://github.com/iptv-org/iptv
synced 2025-12-16 10:26:48 -05:00
Update playlist.js
This commit is contained in:
@@ -7,12 +7,6 @@ const playlist = {}
|
|||||||
class Playlist {
|
class Playlist {
|
||||||
constructor(items = [], options = {}) {
|
constructor(items = [], options = {}) {
|
||||||
this.header = {}
|
this.header = {}
|
||||||
if (options.public) {
|
|
||||||
let guides = items
|
|
||||||
.map(item => (item.guides.length ? item.guides[0].url : null))
|
|
||||||
.filter(i => i)
|
|
||||||
this.header['x-tvg-url'] = _.uniq(guides).sort().join(',')
|
|
||||||
}
|
|
||||||
|
|
||||||
this.links = []
|
this.links = []
|
||||||
for (const item of items) {
|
for (const item of items) {
|
||||||
@@ -29,7 +23,6 @@ class Playlist {
|
|||||||
} else {
|
} else {
|
||||||
attrs = {
|
attrs = {
|
||||||
'tvg-id': stream.get('tvg_id'),
|
'tvg-id': stream.get('tvg_id'),
|
||||||
status: stream.get('status'),
|
|
||||||
'user-agent': stream.get('user_agent') || undefined
|
'user-agent': stream.get('user_agent') || undefined
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user