fixed korn match

This commit is contained in:
Broque Thomas 2025-08-09 12:56:23 -07:00
parent 31a8b01cdb
commit de257af08d
2 changed files with 1 additions and 1 deletions

View file

@ -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()