Fixed the timezone parsing by dishtv.in

This commit is contained in:
StrangeDrVN
2025-12-01 13:26:10 +05:30
parent 9fda204e30
commit 34a53b99a4

View File

@@ -45,8 +45,8 @@ module.exports = {
icon: parseIcon(item),
image: parseImage(item),
episode: parseEpisode(item),
start: dayjs(item.start),
stop: dayjs(item.stop)
start: dayjs.tz(item.start, timezone),
stop: dayjs.tz(item.stop, timezone)
})
})