mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-12-25 18:26:15 +00:00
Fix encoding issue in context menu.
This commit is contained in:
parent
5ab06747a8
commit
e0b5cd1fdb
1 changed files with 1 additions and 1 deletions
|
@ -138,7 +138,7 @@ class ContextMenu(object):
|
||||||
|
|
||||||
def _action_menu(self):
|
def _action_menu(self):
|
||||||
|
|
||||||
selected = self._selected_option
|
selected = self._selected_option.decode('utf-8')
|
||||||
|
|
||||||
if selected == OPTIONS['Transcode']:
|
if selected == OPTIONS['Transcode']:
|
||||||
pass
|
pass
|
||||||
|
|
Loading…
Reference in a new issue