mirror of
https://github.com/iptv-org/epg
synced 2026-05-05 17:07:03 -04:00
Fix firstmedia.com schedule api start time.
The correct start time for schedule is 1. Settings start time to 0 will mix the schedules from next day.
This commit is contained in:
@@ -11,7 +11,7 @@ module.exports = {
|
||||
url({ channel, date }) {
|
||||
return `https://api.firstmedia.com/api/content/tv-guide/list?date=${date.format(
|
||||
'DD/MM/YYYY'
|
||||
)}&channel=${channel.site_id}&startTime=0&endTime=24`
|
||||
)}&channel=${channel.site_id}&startTime=1&endTime=24`
|
||||
},
|
||||
parser({ content, channel, date }) {
|
||||
if (!content || !channel || !date) return []
|
||||
|
||||
Reference in New Issue
Block a user