alos load releaseinfo for international titles, fixes #1128
This commit is contained in:
parent
f0c2b888d7
commit
a7307ec08a
1 changed files with 1 additions and 1 deletions
|
@ -514,7 +514,7 @@ class ImdbCombined(Imdb):
|
||||||
def __init__(self, id, timeout=-1):
|
def __init__(self, id, timeout=-1):
|
||||||
_regex = {}
|
_regex = {}
|
||||||
for key in self.regex:
|
for key in self.regex:
|
||||||
if self.regex[key]['page'] == 'combined':
|
if self.regex[key]['page'] in ('combined', 'releaseinfo'):
|
||||||
_regex[key] = self.regex[key]
|
_regex[key] = self.regex[key]
|
||||||
self.regex = _regex
|
self.regex = _regex
|
||||||
super(ImdbCombined, self).__init__(id, timeout)
|
super(ImdbCombined, self).__init__(id, timeout)
|
||||||
|
|
Loading…
Reference in a new issue