mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Fix ascii error on context menu
This commit is contained in:
parent
d7364afbf5
commit
44808f5dd4
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ class ContextMenu(xbmcgui.WindowXMLDialog):
|
|||
|
||||
if self.getFocusId() == LIST:
|
||||
option = self.list_.getSelectedItem()
|
||||
self.selected_option = option.getLabel()
|
||||
self.selected_option = option.getLabel().decode('utf-8')
|
||||
LOG.info('option selected: %s', self.selected_option)
|
||||
|
||||
self.close()
|
||||
|
|
Loading…
Reference in a new issue