Private GIT

Skip to content
Snippets Groups Projects
Commit c1952643 authored by supergonkas's avatar supergonkas Committed by Dustyn Gibson
Browse files
parent 5f496885
No related branches found
No related tags found
No related merge requests found
...@@ -57,9 +57,9 @@ def sendNZB(nzb): ...@@ -57,9 +57,9 @@ def sendNZB(nzb):
# if it aired more than 7 days ago, override with the backlog category IDs # if it aired more than 7 days ago, override with the backlog category IDs
for curEp in nzb.episodes: for curEp in nzb.episodes:
if datetime.date.today() - curEp.airdate > datetime.timedelta(days=7): if datetime.date.today() - curEp.airdate > datetime.timedelta(days=7):
category = sickbeard.NZBGET_CATEGORY_BACKLOG category = sickbeard.SAB_CATEGORY_BACKLOG
if nzb.show.is_anime: if nzb.show.is_anime:
category = sickbeard.NZBGET_CATEGORY_ANIME_BACKLOG category = sickbeard.SAB_CATEGORY_ANIME_BACKLOG
if category != None: if category != None:
params['cat'] = category params['cat'] = category
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment