mirror of
https://github.com/iptv-org/epg.git
synced 2025-05-10 09:00:07 -04:00
Fixing timezone - removing semi-colon: I'm a maniac
This commit is contained in:
parent
c5a7a6153c
commit
ecea0944c7
1 changed files with 2 additions and 2 deletions
|
@ -76,11 +76,11 @@ function parseIcon(item) {
|
||||||
return item.URLImage || item.URLImageDefault
|
return item.URLImage || item.URLImageDefault
|
||||||
}
|
}
|
||||||
function parseStart(item) {
|
function parseStart(item) {
|
||||||
return dayjs.unix(item.startTime).tz("America/Cayenne");
|
return dayjs.unix(item.startTime).tz("America/Cayenne")
|
||||||
}
|
}
|
||||||
|
|
||||||
function parseStop(item) {
|
function parseStop(item) {
|
||||||
return dayjs.unix(item.endTime).tz("America/Cayenne");
|
return dayjs.unix(item.endTime).tz("America/Cayenne")
|
||||||
}
|
}
|
||||||
|
|
||||||
function parseItems(content) {
|
function parseItems(content) {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue