add disclaimer for channels.

This commit is contained in:
theofficialomega
2026-04-18 12:43:42 +02:00
parent a53abf7668
commit c61db1071f

View File

@@ -84,19 +84,22 @@ module.exports = {
const fullTitle = (item.content.titleLeading ? item.content.titleLeading + (title ? ' - ' : '') : '') + title
programs.push({
title: fullTitle,
description: item.content.description,
image: getImageUrl(item),
icon: getImageUrl(item),
start,
stop,
season: season,
episode: episode,
rating: item.content.csa
title: fullTitle,
description: item.content.description,
image: getImageUrl(item),
icon: getImageUrl(item),
start,
stop,
season: season,
episode: episode,
rating: item.content.csa
})
})
return programs
},
channels() {
return 'Website provides no proper channel list, channels must be added manually'
}
}