mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
Don't encode strings that don't need it
This commit is contained in:
parent
97de6f9d11
commit
dd57dff79f
1 changed files with 4 additions and 4 deletions
|
@ -355,10 +355,10 @@ class API(object):
|
||||||
|
|
||||||
def get_default_headers(self):
|
def get_default_headers(self):
|
||||||
auth = "MediaBrowser "
|
auth = "MediaBrowser "
|
||||||
auth += "Client=%s, " % self.config.data['app.name'].encode('utf-8')
|
auth += "Client=%s, " % self.config.data['app.name']
|
||||||
auth += "Device=%s, " % self.config.data['app.device_name'].encode('utf-8')
|
auth += "Device=%s, " % self.config.data['app.device_name']
|
||||||
auth += "DeviceId=%s, " % self.config.data['app.device_id'].encode('utf-8')
|
auth += "DeviceId=%s, " % self.config.data['app.device_id']
|
||||||
auth += "Version=%s" % self.config.data['app.version'].encode('utf-8')
|
auth += "Version=%s" % self.config.data['app.version']
|
||||||
|
|
||||||
return {
|
return {
|
||||||
"Accept": "application/json",
|
"Accept": "application/json",
|
||||||
|
|
Loading…
Reference in a new issue