mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-06-14 20:26:13 +00:00
Use utf-8 for header encoding
This commit is contained in:
parent
5cbc798cad
commit
0f1f8be5ce
2 changed files with 5 additions and 5 deletions
|
@ -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):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue