mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-10 09:00:07 -04:00
chore: remove confusing category determination
it's all sports in the end
This commit is contained in:
parent
5d33db08b8
commit
b491620697
2 changed files with 2 additions and 2 deletions
|
@ -13,7 +13,7 @@ module.exports = {
|
||||||
programs.push({
|
programs.push({
|
||||||
title: item.title,
|
title: item.title,
|
||||||
description: item.description === item.title ? undefined : item.description,
|
description: item.description === item.title ? undefined : item.description,
|
||||||
category: item.title === "NHL Game" ? "Sports event" : "Sports non-event",
|
category: "Sports",
|
||||||
// image: parseImage(item),
|
// image: parseImage(item),
|
||||||
start: parseStart(item),
|
start: parseStart(item),
|
||||||
stop: parseStop(item)
|
stop: parseStop(item)
|
||||||
|
|
|
@ -28,7 +28,7 @@ it('can parse response', () => {
|
||||||
start: '2024-11-21T12:00:00.000Z',
|
start: '2024-11-21T12:00:00.000Z',
|
||||||
stop: '2024-11-21T13:00:00.000Z',
|
stop: '2024-11-21T13:00:00.000Z',
|
||||||
title: 'On The Fly',
|
title: 'On The Fly',
|
||||||
category: 'Sports non-event',
|
category: 'Sports',
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue