1
0
mirror of https://github.com/krateng/maloja.git synced 2023-08-10 21:12:55 +03:00

Fixed small bug with associated artists

This commit is contained in:
Krateng
2019-02-02 23:55:13 +01:00
parent b58190495f
commit ae4b111bee
3 changed files with 11 additions and 1 deletions

View File

@@ -157,6 +157,11 @@ class CollectorAgent:
def getAllAssociated(self,artist):
return self.rules_include.get(artist,[])
# this function is there to check for artists that we should include in the database even though they never have any scrobble. important to avoid bugs when
# countas rules are declared preemptively
def getAllArtists(self):
return list(set([a for a in self.rules_countas] + [self.rules_countas[a] for a in self.rules_countas]))