Merge branch 'main' into dev

This commit is contained in:
JackDandy 2023-09-12 08:12:07 +01:00
commit af37db4aad
2 changed files with 8 additions and 3 deletions

View file

@ -11,6 +11,11 @@
* Change sort episodes when set to wanted on display show page
### 3.29.8 (2023-09-12 08:10:00 UTC)
* Change omgwtfnzbs domain
### 3.29.7 (2023-09-06 09:40:00 UTC)
* Fix view show to handle "unknown name" on cast

View file

@ -45,9 +45,9 @@ class OmgwtfnzbsProvider(generic.NZBProvider):
def __init__(self):
generic.NZBProvider.__init__(self, 'omgwtfnzbs')
self.url = 'https://omgwtfnzbs.me/' # type: AnyStr
self.url_base = 'https://omgwtfnzbs.me/' # type: AnyStr
self.url_api = 'https://api.omgwtfnzbs.me/' # type: AnyStr
self.url = 'https://omgwtfnzbs.org/' # type: AnyStr
self.url_base = 'https://omgwtfnzbs.org/' # type: AnyStr
self.url_api = 'https://api.omgwtfnzbs.org/' # type: AnyStr
self.urls = {'config_provider_home_uri': self.url_base,
'cache': self.url_api + 'xml/?%s',
'search': self.url_api + 'json/?%s',