Skip to content

Commit 9df5ace

Browse files
committed
Fix decoding error
1 parent b06e271 commit 9df5ace

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

addon.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2-
<addon id="script.trakt" name="Trakt" version="3.0.5" provider-name="Trakt.tv, Razzeee">
2+
<addon id="script.trakt" name="Trakt" version="3.0.6~beta1" provider-name="Trakt.tv, Razzeee">
33
<requires>
44
<import addon="xbmc.python" version="2.14.0"/>
55
<import addon="script.module.simplejson" version="3.3.0"/>

utilities.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def showSettings():
5252
__addon__.openSettings()
5353

5454
def getSetting(setting):
55-
return __addon__.getSetting(setting).strip()
55+
return __addon__.getSetting(setting).strip().decode('utf-8')
5656

5757
def setSetting(setting, value):
5858
__addon__.setSetting(setting, str(value))

0 commit comments

Comments
 (0)