Don't encode strings that don't need it

This commit is contained in:
Matt 2020-03-28 12:21:52 -04:00
parent 97de6f9d11
commit dd57dff79f
1 changed files with 4 additions and 4 deletions

View File

@ -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",