mirror of
https://github.com/SickGear/SickGear.git
synced 2024-11-21 20:35:05 +00:00
Merge branch 'main' into dev
This commit is contained in:
commit
772ba5e167
2 changed files with 12 additions and 6 deletions
|
@ -24,6 +24,11 @@
|
|||
* Fix media process being ignored by Plex extras
|
||||
|
||||
|
||||
### 3.30.7 (2024-01-10 14:20:00 UTC)
|
||||
|
||||
* Fix limit loaded cast (max 30) and crew (max 5) from TVmaze API
|
||||
|
||||
|
||||
### 3.30.6 (2024-01-02 11:05:00 UTC)
|
||||
|
||||
* Fix Shows IMDb cards to new layout at IMDb
|
||||
|
|
|
@ -403,7 +403,8 @@ class Cast(object):
|
|||
self.populate(data)
|
||||
|
||||
def populate(self, data):
|
||||
for cast_member in data:
|
||||
if isinstance(data, list):
|
||||
for cast_member in data[:30]:
|
||||
self.people.append(Person(cast_member['person']))
|
||||
self.characters.append(Character(cast_member['character'], cast_member))
|
||||
self.people[-1].character = self.characters[-1] # add reference to character
|
||||
|
@ -1434,7 +1435,7 @@ def get_show_crew(maze_id, raise_error=True):
|
|||
url = endpoints.show_crew.format(maze_id)
|
||||
q = TVmaze.endpoint_standard_get(url)
|
||||
if q:
|
||||
return [Crew(crew) for crew in q]
|
||||
return [Crew(crew) for crew in (isinstance(q, list) and q[:5]) or []]
|
||||
elif raise_error:
|
||||
raise CrewNotFound(f'Couldn\'t find crew for TVmaze ID {maze_id}')
|
||||
return []
|
||||
|
|
Loading…
Reference in a new issue