Skip to content

Commit

Permalink
Merge pull request #733 from tcely/patch-4
Browse files Browse the repository at this point in the history
Unskip when redownloading
  • Loading branch information
meeb authored Feb 17, 2025
2 parents 8b15ee5 + 610df60 commit a0453d0
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tubesync/sync/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -594,6 +594,9 @@ def form_valid(self, form):
self.object.downloaded_fps = None
self.object.downloaded_hdr = False
self.object.downloaded_filesize = None
# Mark it as not skipped
self.object.skip = False
self.object.manual_skip = False
# Saving here will trigger the post_create signals to schedule new tasks
self.object.save()
return super().form_valid(form)
Expand Down

0 comments on commit a0453d0

Please sign in to comment.