mirror of
https://github.com/krateng/maloja.git
synced 2023-08-10 21:12:55 +03:00
Minor fixes
This commit is contained in:
parent
54bffc5642
commit
ce5e342212
@ -28,9 +28,9 @@ class CleanerAgent:
|
|||||||
return s.replace("\t","").replace("␟","").replace("\n","")
|
return s.replace("\t","").replace("␟","").replace("\n","")
|
||||||
|
|
||||||
|
|
||||||
delimiters_feat = ["ft.","ft","feat.","feat","featuring"] #Delimiters used for extra artists, even when in the title field
|
delimiters_feat = ["ft.","ft","feat.","feat","featuring","Ft.","Ft","Feat.","Feat","Featuring"] #Delimiters used for extra artists, even when in the title field
|
||||||
delimiters = ["vs.","vs","&"] #Delimiters in informal titles, spaces expected around them
|
delimiters = ["vs.","vs","&"] #Delimiters in informal artist strings, spaces expected around them
|
||||||
delimiters_formal = ["; ",";"] #Delimiters used specifically to tag multiple artists when only one tag field is available, no spaces used
|
delimiters_formal = ["; ",";"] #Delimiters used specifically to tag multiple artists when only one tag field is available, no spaces used
|
||||||
|
|
||||||
|
|
||||||
def parseArtists(self,a):
|
def parseArtists(self,a):
|
||||||
|
@ -88,8 +88,10 @@ def get_scrobbles():
|
|||||||
def get_tracks():
|
def get_tracks():
|
||||||
artist = request.query.get("artist")
|
artist = request.query.get("artist")
|
||||||
|
|
||||||
|
artistid = ARTISTS.index(artist)
|
||||||
|
|
||||||
# Option 1
|
# Option 1
|
||||||
ls = [getTrackObject(t) for t in TRACKS if (artist in t[0]) or (artist==None)]
|
ls = [getTrackObject(t) for t in TRACKS if (artistid in t[0]) or (artistid==None)]
|
||||||
|
|
||||||
# Option 2 is a bit more elegant but much slower
|
# Option 2 is a bit more elegant but much slower
|
||||||
#tracklist = [getTrackObject(t) for t in TRACKS]
|
#tracklist = [getTrackObject(t) for t in TRACKS]
|
||||||
|
Loading…
Reference in New Issue
Block a user