Use utf-8 for header encoding

This commit is contained in:
Matt 2020-05-23 10:11:37 -04:00
parent 5cbc798cad
commit 0f1f8be5ce
2 changed files with 5 additions and 5 deletions

View file

@ -6,7 +6,7 @@ import json
import requests
from helper.utils import settings
from helper import LazyLogger, get_filesystem_encoding
from helper import LazyLogger
from six import ensure_str
@ -375,7 +375,7 @@ class API(object):
"Accept-Charset": "UTF-8,*",
"Accept-encoding": "gzip",
"User-Agent": self.config.data['http.user_agent'] or "%s/%s" % (self.config.data['app.name'], self.config.data['app.version']),
"x-emby-authorization": ensure_str(auth, get_filesystem_encoding())
"x-emby-authorization": ensure_str(auth, 'utf-8')
}
def send_request(self, url, path, method="get", timeout=None, headers=None, data=None):