Fix opening feed for series and collections

This commit is contained in:
advplyr 2025-01-20 14:18:22 -06:00
parent a8b92819d1
commit b816c0e7c4

View File

@ -220,7 +220,7 @@ class FeedEpisode extends Model {
const feedEpisodeObjs = [] const feedEpisodeObjs = []
let numExisting = 0 let numExisting = 0
for (const book of books) { for (const book of books) {
const trackList = book.libraryItem.getTrackList() const trackList = book.getTracklist(book.libraryItem.id)
const useChapterTitles = this.checkUseChapterTitlesForEpisodes(trackList, book) const useChapterTitles = this.checkUseChapterTitlesForEpisodes(trackList, book)
for (const track of trackList) { for (const track of trackList) {
// Check for existing episode by filepath // Check for existing episode by filepath