From 99f0ca3391987d716df54b7912de265bcaa0dd9b Mon Sep 17 00:00:00 2001 From: Aleksandr Statciuk Date: Wed, 17 Nov 2021 16:17:18 +0300 Subject: [PATCH] Update tvarenasport.com.config.js --- sites/tvarenasport.com/tvarenasport.com.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) })