Skip to content

Commit

Permalink
Update music_assistant/providers/audiobookshelf/parsers.py
Browse files Browse the repository at this point in the history
Co-authored-by: Marcel van der Veldt <[email protected]>
  • Loading branch information
fmunkes and marcelveldt authored Feb 13, 2025
1 parent 179ad25 commit b305e48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion music_assistant/providers/audiobookshelf/parsers.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ def parse_audiobook(
authors = UniqueList([x.name for x in abs_audiobook.media.metadata.authors])
narrators: UniqueList[str] = UniqueList(abs_audiobook.media.metadata.narrators)
mass_audiobook.authors.set([x.name for x in abs_audiobook.media.metadata.authors])
mass_audiobook.narrators = narrators
mass_audiobook.narrators.set(abs_audiobook.media.metadata.narrators)
chapters = []
for idx, chapter in enumerate(abs_audiobook.media.chapters):
chapters.append(
Expand Down

0 comments on commit b305e48

Please sign in to comment.