Update tvarenasport.com.config.js

This commit is contained in:
Aleksandr Statciuk 2021-11-17 16:17:18 +03:00
parent 91967081cc
commit 99f0ca3391

View file

@ -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)
})