diff --git a/CHANGES.md b/CHANGES.md index 484e45a9..0f84869a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,4 +1,4 @@ -### 0.x.x (2014-11-07 xx:xx:xx UTC) +### 0.x.x (2014-11-09 xx:xx:xx UTC) * Add Bootstrap for UI features * Change UI to resize fluidly on different display sizes, fixes the issue where top menu items would disappear on smaller screens @@ -48,6 +48,7 @@ * Fix image links when anchor child images are not found at Trakt on Add Show/Add Trending Show page * Add image to be used when Trakt posters are void on Add Show/Add Trending Show page * Fix growl registration not sending sickrage update notification registration. +* Fix missing url for kickasstorrents in config_providers [develop changelog] * Change improve display of progress bars in the Downloads columns of the show list page diff --git a/sickbeard/providers/kat.py b/sickbeard/providers/kat.py index dc13922e..840e7106 100644 --- a/sickbeard/providers/kat.py +++ b/sickbeard/providers/kat.py @@ -62,7 +62,7 @@ class KATProvider(generic.TorrentProvider): self.cache = KATCache(self) self.urls = ['http://kickass.to/', 'http://katproxy.com/', 'http://www.kickmirror.com/'] - self.url = None + self.url = 'https://kickass.to/' def isEnabled(self): return self.enabled