From 8c467be69f19b5ecf80a8f37dc03e0ee10e06042 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Odd=20Str=C3=A5b=C3=B8?= Date: Thu, 18 Sep 2025 21:28:33 +0200 Subject: [PATCH] Remove missed references to LibraryException.status --- jellyfin_kodi/library.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jellyfin_kodi/library.py b/jellyfin_kodi/library.py index c3cacc84..13604d9a 100644 --- a/jellyfin_kodi/library.py +++ b/jellyfin_kodi/library.py @@ -445,7 +445,7 @@ class Library(threading.Thread): return True except LibrarySyncLaterException as error: - LOG.error(error.status) + LOG.error(error) dialog("ok", "{jellyfin}", translate(33129)) settings("SyncInstallRunDone.bool", True) sync = get_sync() @@ -455,7 +455,7 @@ class Library(threading.Thread): return True except LibraryException as error: - LOG.error(error.status) + LOG.error(error) except Exception as error: LOG.exception(error)