mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
fix: #381 allow 10s for slow authentication
This commit is contained in:
parent
68c49ea4b7
commit
1c10c5cf02
1 changed files with 1 additions and 2 deletions
|
@ -432,8 +432,7 @@ class API(object):
|
||||||
|
|
||||||
try:
|
try:
|
||||||
LOG.info("Trying to login to %s/%s as %s" % (server_url, path, username))
|
LOG.info("Trying to login to %s/%s as %s" % (server_url, path, username))
|
||||||
response = self.send_request(server_url, path, method="post", headers=headers, data=json.dumps(auth_data))
|
response = self.send_request(server_url, path, method="post", timeout=10, headers=headers, data=json.dumps(auth_data))
|
||||||
|
|
||||||
if response.status_code == 200:
|
if response.status_code == 200:
|
||||||
return response.json()
|
return response.json()
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue