Ensure that we have unicode paths for database lookup

This commit is contained in:
croneter 2018-02-15 08:22:37 +01:00
parent 9b654f034c
commit aa756e60bc

View file

@ -5,7 +5,7 @@ from logging import getLogger
from ntpath import dirname from ntpath import dirname
import artwork import artwork
from utils import kodi_sql from utils import kodi_sql, tryDecode
import variables as v import variables as v
############################################################################### ###############################################################################
@ -1574,6 +1574,7 @@ def kodiid_from_filename(path, kodi_type):
Returns None if not possible Returns None if not possible
""" """
kodi_id = None kodi_id = None
path = tryDecode(path)
try: try:
filename = path.rsplit('/', 1)[1] filename = path.rsplit('/', 1)[1]
path = path.rsplit('/', 1)[0] + '/' path = path.rsplit('/', 1)[0] + '/'