Skip to content

Commit

Permalink
Fix "gpo sync" failure.
Browse files Browse the repository at this point in the history
The skip_lock parameter was not removed from one of the
delete_episode_list() calls, causing a failure syncing with gpo.

Fixes #1077
  • Loading branch information
auouymous committed Jun 24, 2021
1 parent 5011923 commit 63196ae
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/gpodder/syncui.py
Original file line number Diff line number Diff line change
Expand Up @@ -260,8 +260,7 @@ def auto_delete_callback(episodes):
episode_to_delete.title)

logger.info('Will start sync - after deleting episodes')
self.delete_episode_list(episodes, False,
True, resume_sync)
self.delete_episode_list(episodes, False, resume_sync)

return

Expand Down

0 comments on commit 63196ae

Please sign in to comment.