Remove missed references to LibraryException.status

This commit is contained in:
Odd Stråbø 2025-09-18 21:28:33 +02:00
commit 8c467be69f

View file

@ -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)