diff --git a/addon/globalPlugins/textnormalizer/textnormalizer.py b/addon/globalPlugins/textnormalizer/textnormalizer.py index d7d8b47..838b83d 100644 --- a/addon/globalPlugins/textnormalizer/textnormalizer.py +++ b/addon/globalPlugins/textnormalizer/textnormalizer.py @@ -134,7 +134,7 @@ def CheckText(self, text, change_case = True): """ # сразу убираем символ "мягкий перенос" - text = text.replace(chr(173), "") + text = text.replace("\u200d", "").replace(chr(173), "").replace(chr(8205), "") newText = text words = re.findall("[\\w\\@#]+", newText, re.IGNORECASE) words2 = words.copy()