Fixed search issues

This commit is contained in:
RemixDev 2021-01-31 17:50:32 +01:00
parent 7d79211056
commit a8944c71bd
No known key found for this signature in database
GPG key ID: B33962B465BDB51C

View file

@ -197,5 +197,5 @@ def clean_search_query(term):
term = re.sub(r' ft[\.]? ', " ", term)
term = re.sub(r'\(feat[\.]? ', " ", term)
term = re.sub(r'\(ft[\.]? ', " ", term)
term = term.replace('&', " ").replace('', "-").replace('', "-")
term = term.replace(' & ', " ").replace('', "-").replace('', "-")
return term