Skip to content

Commit

Permalink
use chinese_title instead of this_title
Browse files Browse the repository at this point in the history
  • Loading branch information
LeiShi1313 committed Oct 17, 2021
1 parent 52db89c commit 3d1e88d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion differential/plugins/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ def title(self):
def subtitle(self):
if not self._ptgen.get("site") == "douban":
return ""
subtitle = f"{'/'.join(self._ptgen.get('this_title', []) + self._ptgen.get('aka', []))}"
subtitle = f"{'/'.join(self._ptgen.get('chinese_title', []) + self._ptgen.get('aka', []))}"
if self._ptgen.get("director"):
subtitle += (
f"【导演:{'/'.join([d.get('name') for d in self._ptgen.get('director')])}】"
Expand Down

0 comments on commit 3d1e88d

Please sign in to comment.