diff --git a/sites/tvarenasport.com/tvarenasport.com.config.js b/sites/tvarenasport.com/tvarenasport.com.config.js index e2b957da..7ba80254 100644 --- a/sites/tvarenasport.com/tvarenasport.com.config.js +++ b/sites/tvarenasport.com/tvarenasport.com.config.js @@ -22,9 +22,9 @@ module.exports = { const items = parseItems(content, channel) items.forEach(item => { programs.push({ - title: item.title, + title: item.title.trim(), category: item.league, - description: item.sport, + description: item.sport.trim(), start: dayjs(item.start), stop: dayjs(item.end) })