Add string escape for sub_title

This commit is contained in:
mcastellaneta 2022-05-09 12:03:33 +02:00
parent 29ac35f925
commit e42deb0d04
1 changed files with 1 additions and 1 deletions

View File

@ -194,7 +194,7 @@ utils.convertToXMLTV = function ({ channels, programs }) {
guest: program.guest
})
const icon = utils.escapeString(program.icon)
const sub_title = program.sub_title || ''
const sub_title = utils.escapeString(program.sub_title)
const url = program.url ? createURL(program.url, channel) : ''
if (start && stop && title) {