Update save.js

Add support for:
- sub_title
- date
- url
- credits
This commit is contained in:
Michele Castellaneta 2022-05-06 12:05:33 +02:00 committed by GitHub
parent 9d9988c6f6
commit be404a6d8f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -22,12 +22,26 @@ async function main() {
category: program.category || null,
season: program.season || null,
episode: program.episode || null,
sub_title : program.sub_title || null,
url : program.url || null,
icon: program.icon || null,
channel: program.channel,
sub_title: program.sub_title || null,
date: program.date || null,
lang: program.lang,
start: program.start,
stop: program.stop,
stop: program.stop,
date: program.date || null,
director: program.director || null,
actor: program.actor || null,
writer: program.writer || null,
adapter: program.adapter || null,
producer: program.producer || null,
composer: program.composer || null,
editor: program.editor || null,
presenter: program.presenter || null,
commentator: program.commentator || null,
guest: program.guest || null,
site: item.channel.site,
_qid: result._qid
}