Update db.js

This commit is contained in:
Aleksandr Statciuk 2021-09-17 14:24:50 +03:00
parent 52e8e617e1
commit 11cc75fa2a
1 changed files with 2 additions and 5 deletions

View File

@ -11,11 +11,10 @@ db.load = async function () {
const codes = await epg.codes.load()
for (const file of files) {
const playlist = await parser.parsePlaylist(file)
let guides = []
for (const channel of playlist.channels) {
const code = codes.find(ch => ch['tvg_id'] === channel.tvg.id)
if (code && Array.isArray(code.guides)) {
guides = [...guides, ...code.guides]
if (code && Array.isArray(code.guides) && code.guides.length) {
channel.tvg.url = code.guides[0]
}
db.channels.add(channel)
@ -33,8 +32,6 @@ db.load = async function () {
}
}
if (guides.length) playlist.header.attrs['url-tvg'] = guides.join(',')
db.playlists.add(playlist)
}
}