mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-10-08 18:02:03 +00:00
Remove missed references to LibraryException.status
This commit is contained in:
parent
402be319ca
commit
8c467be69f
1 changed files with 2 additions and 2 deletions
|
@ -445,7 +445,7 @@ class Library(threading.Thread):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
except LibrarySyncLaterException as error:
|
except LibrarySyncLaterException as error:
|
||||||
LOG.error(error.status)
|
LOG.error(error)
|
||||||
dialog("ok", "{jellyfin}", translate(33129))
|
dialog("ok", "{jellyfin}", translate(33129))
|
||||||
settings("SyncInstallRunDone.bool", True)
|
settings("SyncInstallRunDone.bool", True)
|
||||||
sync = get_sync()
|
sync = get_sync()
|
||||||
|
@ -455,7 +455,7 @@ class Library(threading.Thread):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
except LibraryException as error:
|
except LibraryException as error:
|
||||||
LOG.error(error.status)
|
LOG.error(error)
|
||||||
|
|
||||||
except Exception as error:
|
except Exception as error:
|
||||||
LOG.exception(error)
|
LOG.exception(error)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue