Update elcinema.com.config.js

This commit is contained in:
Aleksandr Statciuk 2021-11-10 15:07:08 +03:00
parent dc77d23a1e
commit fe6b3ec2d8

View file

@ -12,7 +12,9 @@ dayjs.extend(utc)
module.exports = { module.exports = {
site: 'elcinema.com', site: 'elcinema.com',
url({ channel }) { url({ channel }) {
return `https://elcinema.com/tvguide/${channel.site_id}/` const lang = channel.lang === 'en' ? 'en/' : '/'
return `https://elcinema.com/${lang}tvguide/${channel.site_id}/`
}, },
logo({ content }) { logo({ content }) {
const dom = new JSDOM(content) const dom = new JSDOM(content)
@ -116,7 +118,7 @@ function parseDescription(item) {
} }
).textContent ).textContent
return excerpt.replace('...اقرأ المزيد', '') + desc return excerpt.replace('...اقرأ المزيد', '').replace('...Read more', '') + desc
} }
function parseItems(content, date) { function parseItems(content, date) {