Skip to content

Commit

Permalink
Progress sync requires library walk
Browse files Browse the repository at this point in the history
  • Loading branch information
glensc committed Apr 6, 2024
1 parent ae2c74c commit cc49468
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions plextraktsync/plan/WalkConfig.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@ def walk_library(self):
if self.walk_movies or self.walk_shows:
return True

# Progress sync requires library walk
if self.progress:
return True

return False

@property
Expand All @@ -73,7 +77,4 @@ def is_valid(self):
if self.walk_watchlist:
return True

if self.progress:
return True

return False

0 comments on commit cc49468

Please sign in to comment.