From fe3a8f8fb11aa180e350cab72e6bcedfd8d1b118 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elan=20Ruusam=C3=A4e?= Date: Tue, 9 Apr 2024 16:25:07 +0300 Subject: [PATCH] Cleanup liked lists from Sync --- plextraktsync/sync/Sync.py | 6 ------ 1 file changed, 6 deletions(-) diff --git a/plextraktsync/sync/Sync.py b/plextraktsync/sync/Sync.py index 70c420c0784..a3f25ec8108 100644 --- a/plextraktsync/sync/Sync.py +++ b/plextraktsync/sync/Sync.py @@ -55,12 +55,6 @@ def sync(self, walker: Walker, dry_run=False): else: trakt_lists.add_watchlist(self.trakt.watchlist_movies) - if self.config.sync_liked_lists: - if is_partial: - self.logger.warning("Partial walk, disabling liked lists updating. Liked lists won't update because it needs full library sync.") - else: - trakt_lists.load_lists(self.trakt.liked_lists) - if self.config.need_library_walk: for movie in walker.find_movies(): pm.hook.walk_movie(movie=movie, dry_run=dry_run)