Update guidatv.sky.it.config.js

Fix typo
This commit is contained in:
Michele Castellaneta 2022-11-02 19:04:06 +01:00 committed by GitHub
parent 11e532ef02
commit 27c02601f4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -60,7 +60,7 @@ function parseIcon(item) {
function parseSeason(item) {
if (!item.content.seasonNumber) return null
if (String(item.content.seasonNumber)).length > 2) return null
if (String(item.content.seasonNumber).length > 2) return null
return item.content.seasonNumber
}
@ -68,4 +68,4 @@ function parseEpisode(item) {
if (!item.content.episodeNumber) return null
if (String(item.content.episodeNumber).length > 3) return null
return item.content.episodeNumber
}
}