This commit is contained in:
codey 2025-01-13 20:50:24 -05:00
parent 86946f0316
commit ff04602954

View File

@ -26,6 +26,8 @@ class Aggregate:
if not search: if not search:
print("Cache: NOT FOUND!") print("Cache: NOT FOUND!")
# Then try Genius # Then try Genius
if "genius" in self.exclude_methods:
return # Skipped last possible source, return None
search = await genius_search.search(artist, song) search = await genius_search.search(artist, song)
return search return search