From 0038527640cdef49d9107b99ba49b3c0428a4d45 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elan=20Ruusam=C3=A4e?= Date: Sun, 29 Dec 2024 14:49:11 +0200 Subject: [PATCH] Add retry to PlexSectionPager.total_size --- plextraktsync/plex/PlexSectionPager.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plextraktsync/plex/PlexSectionPager.py b/plextraktsync/plex/PlexSectionPager.py index 643cbcbcc2..67f63bd34a 100644 --- a/plextraktsync/plex/PlexSectionPager.py +++ b/plextraktsync/plex/PlexSectionPager.py @@ -22,6 +22,7 @@ def __len__(self): return self.total_size @cached_property + @retry def total_size(self): return self.section.totalViewSize(libtype=self.libtype, includeCollections=False)