feat: call out for tv ranges
This commit is contained in:
parent
2069f9a56c
commit
1a61089783
2 changed files with 6 additions and 1 deletions
|
@ -25,6 +25,11 @@ module.exports = {
|
|||
normalized['alt'] = `${item['title']} from ${item['name']}`
|
||||
normalized['subtext'] = item['subtext']
|
||||
}
|
||||
if (item.type === 'tv-range') {
|
||||
normalized['title'] = item['name']
|
||||
normalized['alt'] = `${item['subtext']} from ${item['name']}`
|
||||
normalized['subtext'] = item['subtext']
|
||||
}
|
||||
return normalized
|
||||
}),
|
||||
}
|
||||
|
|
|
@ -53,7 +53,7 @@ module.exports = async function () {
|
|||
startingSeason: matchedEpisode['season'],
|
||||
episode: episode['episode']['number'],
|
||||
season: episode['episode']['season'],
|
||||
type: 'tv',
|
||||
type: 'tv-range',
|
||||
})
|
||||
} else {
|
||||
// if an episode with the same show name doesn't exist, push it to the array
|
||||
|
|
Reference in a new issue