diff --git a/sites/france.tv/france.tv.config.js b/sites/france.tv/france.tv.config.js index 885772634..e5cd507e9 100644 --- a/sites/france.tv/france.tv.config.js +++ b/sites/france.tv/france.tv.config.js @@ -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' } }