mirror of
https://github.com/morpheus65535/bazarr.git
synced 2024-11-10 09:02:44 +08:00
Fixed Wizdom API url. #1870
This commit is contained in:
parent
fe09ae9de5
commit
a7b1b2a454
1 changed files with 1 additions and 1 deletions
|
@ -134,7 +134,7 @@ class WizdomProvider(Provider):
|
|||
|
||||
# search
|
||||
logger.debug('Using IMDB ID %r', imdb_id)
|
||||
url = 'http://json.{}/{}.json'.format(self.server_url, imdb_id)
|
||||
url = 'https://{}/api/releases/{}'.format(self.server_url, imdb_id)
|
||||
page_link = 'http://{}/#/{}/{}'.format(self.server_url, 'movies' if is_movie else 'series', imdb_id)
|
||||
|
||||
# get the list of subtitles
|
||||
|
|
Loading…
Reference in a new issue