Added image to sky.com

This commit is contained in:
Aandree5
2025-03-04 17:21:45 +00:00
parent 2721fe1ba0
commit f3df393df6
2 changed files with 16 additions and 3 deletions

View File

@@ -28,13 +28,18 @@ module.exports = {
schedule.events.forEach(event => {
const start = dayjs.utc(event.st * 1000)
if (start.isSame(date, 'd')) {
const image = `https://images.metadata.sky.com/pd-image/${event.programmeuuid}/16-9/640`
programs.push({
title: event.t,
description: event.sy,
season: event.seasonnumber,
episode: event.episodenumber,
start,
stop: start.add(event.d, 's')
stop: start.add(event.d, 's'),
icon: {
src: image
},
image,
})
}
})