Skip to content
Snippets Groups Projects
Verified Commit c16258ed authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Removed popularity weight in similar radio, to avoid filter bubbles

parent e6a5f69f
No related branches found
No related tags found
No related merge requests found
......@@ -221,7 +221,7 @@ class SimilarRadio(RelatedObjectRadio):
next_candidates = [n for n in next_candidates if n[0] in matching_tracks]
if not next_candidates:
raise NextNotFound()
return weighted_choice(next_candidates)
return random.choice([c[0] for c in next_candidates])
@registry.register(name="artist")
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment