Fixes linter errors

This commit is contained in:
freearhey 2023-10-15 14:08:23 +03:00
parent 57e508fc3b
commit 63c86a2b30
393 changed files with 28447 additions and 28443 deletions

View file

@ -1,43 +1,43 @@
const dayjs = require('dayjs')
module.exports = {
site: 'tv.lv',
days: 2,
url: function ({ date, channel }) {
return `https://www.tv.lv/programme/listing/none/${date.format(
'DD-MM-YYYY'
)}?filter=channel&subslug=${channel.site_id}`
},
parser: function ({ content }) {
const programs = []
const items = parseItems(content)
items.forEach(item => {
const start = parseStart(item)
const stop = parseStop(item)
programs.push({
title: item.title,
description: item.description_long,
category: item.categorystring,
icon: item.image,
start,
stop
})
})
return programs
}
}
function parseStart(item) {
return item.start_unix ? dayjs.unix(item.start_unix) : null
}
function parseStop(item) {
return item.stop_unix ? dayjs.unix(item.stop_unix) : null
}
function parseItems(content) {
const data = JSON.parse(content)
return data.schedule.programme || []
}
const dayjs = require('dayjs')
module.exports = {
site: 'tv.lv',
days: 2,
url: function ({ date, channel }) {
return `https://www.tv.lv/programme/listing/none/${date.format(
'DD-MM-YYYY'
)}?filter=channel&subslug=${channel.site_id}`
},
parser: function ({ content }) {
const programs = []
const items = parseItems(content)
items.forEach(item => {
const start = parseStart(item)
const stop = parseStop(item)
programs.push({
title: item.title,
description: item.description_long,
category: item.categorystring,
icon: item.image,
start,
stop
})
})
return programs
}
}
function parseStart(item) {
return item.start_unix ? dayjs.unix(item.start_unix) : null
}
function parseStop(item) {
return item.stop_unix ? dayjs.unix(item.stop_unix) : null
}
function parseItems(content) {
const data = JSON.parse(content)
return data.schedule.programme || []
}