Guard against empty program description on mncvision.id.

Signed-off-by: Toha <tohenk@yahoo.com>
This commit is contained in:
Toha 2025-03-28 18:28:16 +07:00
parent 30dc0517be
commit bd5cdcf892
No known key found for this signature in database
GPG key ID: 2D7AA6389D44DCAB

View file

@ -129,8 +129,7 @@ async function parseItems(content, date, cookies) {
}
await doFetch(queues, (queue, res) => {
const $item = queue.i
const $page = cheerio.load(res)
const description = $page('.synopsis').text().trim()
const description = res ? cheerio.load(res)('.synopsis').text().trim() : null
const start = parseStart($item, date)
const duration = parseDuration($item)
const stop = start.add(duration, 'm')