Fix actor_photo None
This commit is contained in:
2
core.py
2
core.py
@@ -60,7 +60,7 @@ def get_info(json_data): # 返回json里的数据
|
|||||||
outline = json_data.get('outline')
|
outline = json_data.get('outline')
|
||||||
runtime = json_data.get('runtime')
|
runtime = json_data.get('runtime')
|
||||||
director = json_data.get('director')
|
director = json_data.get('director')
|
||||||
actor_photo = json_data.get('actor_photo')
|
actor_photo = json_data.get('actor_photo', {})
|
||||||
release = json_data.get('release')
|
release = json_data.get('release')
|
||||||
number = json_data.get('number')
|
number = json_data.get('number')
|
||||||
cover = json_data.get('cover')
|
cover = json_data.get('cover')
|
||||||
|
|||||||
Reference in New Issue
Block a user