Update allente.se.config.js

This commit is contained in:
Aleksandr Statciuk 2022-02-01 04:04:51 +03:00
parent c04a65cebe
commit 636d5290b6

View file

@ -8,9 +8,6 @@ module.exports = {
return `https://cs-vcb.allente.${country}/epg/events?date=${date.format('YYYY-MM-DD')}` return `https://cs-vcb.allente.${country}/epg/events?date=${date.format('YYYY-MM-DD')}`
}, },
logo({ channel }) {
return channel.logo
},
parser({ content, channel }) { parser({ content, channel }) {
let programs = [] let programs = []
const items = parseItems(content, channel) const items = parseItems(content, channel)
@ -40,8 +37,7 @@ module.exports = {
return { return {
lang, lang,
site_id: `${country}#${item.id}`, site_id: `${country}#${item.id}`,
name: item.name, name: item.name
logo: `https:${item.icon}`
} }
}) })
} }