Skip to content

Commit

Permalink
Fix BTN so it's not always enabled
Browse files Browse the repository at this point in the history
BTN was set to be always enabled regardless of the config.  This fixes
it so that it actually uses the config to see if it's enabled or not.
  • Loading branch information
xombiemp committed Mar 6, 2012
1 parent 2020a41 commit dd0753a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sickbeard/providers/btn.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ def __init__(self):
self.url = 'http://broadcasthe.net/'

def isEnabled(self):
return True
return sickbeard.BTN

def imageName(self):
return 'btn.gif'
Expand Down

0 comments on commit dd0753a

Please sign in to comment.