Skip to content

Commit

Permalink
Merge pull request #61 from pymedusa/backlog_disable_check
Browse files Browse the repository at this point in the history
[Manual Search] Search providers even if backlog search is disabled
  • Loading branch information
duramato committed Mar 1, 2016
2 parents 2a834f9 + 5b795bd commit 286b5d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sickbeard/webserve.py
Original file line number Diff line number Diff line change
Expand Up @@ -1451,7 +1451,7 @@ def manualSelect(self, show=None, season=None, episode=None, perform_search=0, d
found_items = []
last_prov_updates = {}

providers = [x for x in sickbeard.providers.sortedProviderList(sickbeard.RANDOMIZE_PROVIDERS) if x.is_active() and x.enable_backlog]
providers = [x for x in sickbeard.providers.sortedProviderList(sickbeard.RANDOMIZE_PROVIDERS) if x.is_active() and x.enable_daily]
for curProvider in providers:

# Let's check if this provider table already exists
Expand Down

0 comments on commit 286b5d2

Please sign in to comment.