diff --git a/CHANGES.md b/CHANGES.md index b0e28669..0d9692e3 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -13,6 +13,7 @@ * Add ability to differentiate webdl/rip sources so overwriting propers is always done from the same source (e.g. AMZN) * Change layout of quality custom to improve clarity * Change tweak text of SD DVD to include BD/BR +* Change TBy prov add UHD cat [develop changelog] diff --git a/sickbeard/providers/torrentbytes.py b/sickbeard/providers/torrentbytes.py index f0009a9a..ffa9a237 100644 --- a/sickbeard/providers/torrentbytes.py +++ b/sickbeard/providers/torrentbytes.py @@ -36,7 +36,7 @@ class TorrentBytesProvider(generic.TorrentProvider): self.url_tmpl = {'config_provider_home_uri': '%(home)s', 'login_action': '%(home)s%(vars)s', 'search': '%(home)s%(vars)s'} - self.categories = {'Season': [41, 32], 'Episode': [33, 37, 38]} + self.categories = {'Season': [41], 'Episode': [32, 33, 37, 38]} self.categories['Cache'] = self.categories['Season'] + self.categories['Episode'] self.username, self.password, self.freeleech, self.minseed, self.minleech = 5 * [None]