diff --git a/jellyfin_kodi/helper/utils.py b/jellyfin_kodi/helper/utils.py index c7c31567..3e2b58cd 100644 --- a/jellyfin_kodi/helper/utils.py +++ b/jellyfin_kodi/helper/utils.py @@ -425,7 +425,7 @@ def normalize_string(text): text = text.strip() text = text.rstrip(".") - text = unicodedata.normalize("NFKD", str(text, "utf-8")).encode("ascii", "ignore") + text = unicodedata.normalize("NFKD", text).encode("ascii", "ignore") return text