Skip to content

Commit

Permalink
[script.embuary.helper] 1.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sualfred committed Jan 11, 2021
1 parent 66832b3 commit 71f10b8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion script.embuary.helper/addon.xml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.embuary.helper" name="Embuary Helper" version="1.4.9" provider-name="sualfred">
<addon id="script.embuary.helper" name="Embuary Helper" version="1.5.0" provider-name="sualfred">
<requires>
<import addon="xbmc.python" version="2.26.0"/>
<import addon="script.module.pil" version="1.1.7"/>
Expand Down
5 changes: 4 additions & 1 deletion script.embuary.helper/resources/lib/plugin_content.py
Original file line number Diff line number Diff line change
Expand Up @@ -808,7 +808,10 @@ def getitemsbyactor(self):
self._retry('getitemsbyactor')

if not PYTHON3:
plugin_category = ADDON.getLocalizedString(32030) + ' ' + actor.decode('utf-8')
if isinstance(actor, unicode):
plugin_category = ADDON.getLocalizedString(32030) + ' ' + actor
else:
plugin_category = ADDON.getLocalizedString(32030) + ' ' + actor.decode('utf-8')
else:
plugin_category = ADDON.getLocalizedString(32030) + ' ' + actor

Expand Down

0 comments on commit 71f10b8

Please sign in to comment.