Skip to content

Commit

Permalink
Fix opening feed for series and collections
Browse files Browse the repository at this point in the history
  • Loading branch information
advplyr committed Jan 20, 2025
1 parent a8b9281 commit b816c0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/models/FeedEpisode.js
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ class FeedEpisode extends Model {
const feedEpisodeObjs = []
let numExisting = 0
for (const book of books) {
const trackList = book.libraryItem.getTrackList()
const trackList = book.getTracklist(book.libraryItem.id)
const useChapterTitles = this.checkUseChapterTitlesForEpisodes(trackList, book)
for (const track of trackList) {
// Check for existing episode by filepath
Expand Down

0 comments on commit b816c0e

Please sign in to comment.