Skip to content

Commit

Permalink
Fix: wrong emby actor info format (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
sqzw-x committed Jan 8, 2024
1 parent 0450c37 commit c869f15
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/models/tools/actress_db.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def update_actor_info_from_db(cls, actor_info: EMbyActressInfo) -> bool:
birthplace = "日本" if not birthplace else "日本·" + birthplace.replace('県', '县')
actor_info.locations = [birthplace]
if not actor_info.taglines:
actor_info.taglines = "日本AV女优"
actor_info.taglines = ["日本AV女优"]
if not actor_info.overview:
actor_info.overview = f"无维基百科信息, 从 minnano-av 数据库补全女优信息"
return True

0 comments on commit c869f15

Please sign in to comment.