fixed korn match

pull/8/head
Broque Thomas 9 months ago
parent 31a8b01cdb
commit de257af08d

@ -52,7 +52,7 @@ class MusicMatchingEngine:
"""
if not text:
return ""
text = re.sub(r'koяn', 'korn', text, flags=re.IGNORECASE)
text = unidecode(text)
text = text.lower()

Loading…
Cancel
Save