Merge branch 'hotfix/0.12.8'

This commit is contained in:
JackDandy 2017-02-19 15:04:55 +00:00
commit ef87caee00
2 changed files with 7 additions and 2 deletions

View file

@ -1,4 +1,9 @@
### 0.12.7 (2017-02-17 15:00:00 UTC)
### 0.12.8 (2017-02-19 13:50:00 UTC)
* Change BTN API hostname
### 0.12.7 (2017-02-17 15:00:00 UTC)
* Change accept lists in JSON responses
* Change do not log error for empty BTN un/pw in most cases

View file

@ -39,7 +39,7 @@ class BTNProvider(generic.TorrentProvider):
generic.TorrentProvider.__init__(self, 'BTN')
self.url_base = 'https://broadcasthe.net/'
self.url_api = 'https://api.btnapps.net'
self.url_api = 'https://api.broadcasthe.net'
self.urls = {'config_provider_home_uri': self.url_base, 'login': self.url_base + 'login.php',
'search': self.url_base + 'torrents.php?searchstr=%s&action=basic&%s', 'get': self.url_base + '%s'}