@@ -257,14 +257,14 @@ def get_album_from_yaml_metadata(self, data, items):
257257 artists = authors_and_narrators if self .config ["include_narrator_in_artists" ] else authors
258258
259259 description = data ["description" ]
260- genres = "/" . join ( data ["genres" ])
260+ genres = data ["genres" ]
261261
262262 common_attributes = {
263263 "artist_id" : None ,
264264 "album_sort" : album_sort ,
265265 "composer" : narrators ,
266266 "grouping" : content_group_description ,
267- "genre " : genres ,
267+ "genres " : genres ,
268268 "series_name" : series_name ,
269269 "series_position" : series_position ,
270270 "comments" : description ,
@@ -415,7 +415,7 @@ def get_album_info(self, asin, region):
415415
416416 description = book .summary_markdown
417417 cover_url = book .image_url
418- genres = "/" . join ( [g .name for g in book .genres ])
418+ genres = [g .name for g in book .genres ]
419419
420420 album_url = get_audible_album_url (asin , book .region )
421421 region = book .region
@@ -426,7 +426,7 @@ def get_album_info(self, asin, region):
426426 "album_sort" : album_sort ,
427427 "composer" : narrators ,
428428 "grouping" : content_group_description ,
429- "genre " : genres ,
429+ "genres " : genres ,
430430 "series_name" : series_name ,
431431 "series_position" : series_position ,
432432 "comments" : description ,
0 commit comments