mirror of
https://github.com/robweber/xbmcbackup.git
synced 2025-06-22 10:43:42 +02:00
decode text to utf-8
This commit is contained in:
@ -17,8 +17,7 @@ class GuiSettingsManager:
|
|||||||
|
|
||||||
def run(self):
|
def run(self):
|
||||||
#get a list of all the settings we can manipulate via json
|
#get a list of all the settings we can manipulate via json
|
||||||
utils.log(xbmc.executeJSONRPC('{"jsonrpc":"2.0", "id":1, "method":"Settings.GetSettings","params":{"level":"advanced"}}'))
|
json_response = json.loads(xbmc.executeJSONRPC('{"jsonrpc":"2.0", "id":1, "method":"Settings.GetSettings","params":{"level":"advanced"}}').decode('utf-8'))
|
||||||
json_response = json.loads(utils.encode(xbmc.executeJSONRPC('{"jsonrpc":"2.0", "id":1, "method":"Settings.GetSettings","params":{"level":"advanced"}}')))
|
|
||||||
|
|
||||||
settings = json_response['result']['settings']
|
settings = json_response['result']['settings']
|
||||||
currentSettings = {}
|
currentSettings = {}
|
||||||
|
Reference in New Issue
Block a user