mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-08-24 16:31:36 +00:00
check LocalTrailerCount as a number
dont log metrics for 400 errors as they are mostly server issues
This commit is contained in:
parent
62c284fdd7
commit
4aef5d7551
3 changed files with 6 additions and 6 deletions
|
@ -293,7 +293,7 @@ class DownloadUtils(object):
|
|||
|
||||
if response.status_code == 400:
|
||||
log.error("Malformed request: %s", error)
|
||||
raise Warning('400:' + str(error))
|
||||
raise internal_exceptions.ExceptionWrapper(error)
|
||||
|
||||
if response.status_code == 401:
|
||||
# Unauthorized
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue