Fix:Series & collection rss feeds repeating first book #1531

This commit is contained in:
advplyr 2023-03-05 15:26:18 -06:00
parent 785942b94f
commit 557d3243c3
2 changed files with 11 additions and 7 deletions

View file

@ -77,6 +77,7 @@ class Feed {
getEpisodePath(id) {
var episode = this.episodes.find(ep => ep.id === id)
console.log('getEpisodePath=', id, episode)
if (!episode) return null
return episode.fullPath
}