Skip to content

Commit

Permalink
Search providers even if backlog search is disabled
Browse files Browse the repository at this point in the history
Dailysearcher that does episode search. Don't need backlog enabled
  • Loading branch information
fernandog committed Mar 1, 2016
1 parent 2a834f9 commit 5b795bd
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 5b795bd

Please sign in to comment.