From 13f12b2635248c728e4188f1812b2596e9ef98e2 Mon Sep 17 00:00:00 2001 From: echel0n Date: Fri, 11 Jul 2014 18:01:55 -0700 Subject: [PATCH] Fixed issue with WEB Api and setting episode statuses for backlog searches. --- sickbeard/webapi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sickbeard/webapi.py b/sickbeard/webapi.py index e77fd73e..2832420c 100644 --- a/sickbeard/webapi.py +++ b/sickbeard/webapi.py @@ -974,7 +974,7 @@ class CMD_EpisodeSetStatus(ApiCall): sql_l = [] for epObj in ep_list: - if ep_segment == None and self.status == WANTED: + if self.status == WANTED: # figure out what episodes are wanted so we can backlog them if epObj.season in ep_segment: ep_segment[epObj.season].append(epObj)