Skip to content

Commit

Permalink
Continue on wrong algorithm specification
Browse files Browse the repository at this point in the history
  • Loading branch information
Serene-Arc committed May 22, 2023
1 parent 14dabac commit ee97b42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion beetsplug/audible.py
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ def sort_tracks(self, album: AlbumInfo, items: List[Item]) -> Optional[List[Trac
for algorithm_choice in self.config["chapter_matching_algorithms"]:
if algorithm_choice not in possible_matching_algorithms.keys():
self._log.error(f"'{algorithm_choice}' is not a valid algorithm choice for chapter matching")
return
continue
function = possible_matching_algorithms[algorithm_choice]
matches = function(items, album)
if matches is not None:
Expand Down

0 comments on commit ee97b42

Please sign in to comment.