Fixes for Kodi 18.5 (and Python2)

This commit is contained in:
Odd Stråbø 2020-01-04 05:17:51 +01:00
parent a51bf9c2cc
commit 933a31ac23
6 changed files with 13 additions and 9 deletions

View file

@ -8,6 +8,7 @@ import sqlite3
from ntpath import dirname
from six.moves.urllib.parse import urlencode
from kodi_six.utils import py2_encode
from .obj import Objects
from .kodi import TVShows as KodiDb, queries as QU
@ -394,7 +395,7 @@ class TVShows(KodiDb):
else:
obj['Path'] = "plugin://plugin.video.jellyfin/%s/" % obj['SeriesId']
params = {
'filename': obj['Filename'],
'filename': py2_encode(obj['Filename'], 'utf-8'),
'id': obj['Id'],
'dbid': obj['EpisodeId'],
'mode': "play"