Skip to content
This repository has been archived by the owner on May 18, 2024. It is now read-only.

Fix issue 578 (recurrence of #478): Single Episode Downloads Not Functioning Correctly #667

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/classes.py
Original file line number Diff line number Diff line change
Expand Up @@ -1366,7 +1366,7 @@ def download(self, retries=0, library=[], parentReleases=[]):
if len(self.Episodes) > 2:
if self.season_pack(scraped_releases):
debrid_downloaded, retry = self.debrid_download()
# if scraper.traditional() or debrid_downloaded:
if scraper.traditional() or debrid_downloaded:
for episode in self.Episodes:
episode.skip_scraping = True
# If there was nothing downloaded, scrape specifically for this season
Expand Down