Skip to content

Commit

Permalink
fixup! fixup! Add LikedListsPlugin plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
glensc committed Apr 9, 2024
1 parent 59faa80 commit 7a69d75
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions plextraktsync/sync/plugin/LikedListsPlugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,9 @@ def factory(cls, sync: Sync):
return cls(sync.trakt)

@hookimpl
def init(self, sync, trakt_lists, is_partial):
def init(self, trakt_lists, is_partial):
if is_partial:
self.logger.warning(
"XXX Partial walk, disabling liked lists updating. Liked lists won't update because it needs full library sync."
)
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)

0 comments on commit 7a69d75

Please sign in to comment.