Skip to content

Commit

Permalink
fix: YemaPT 做种体积缺失
Browse files Browse the repository at this point in the history
  • Loading branch information
linyuan0213 committed Jun 14, 2024
1 parent eb4706c commit c164896
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/sites/siteuserinfo/yemapt.py
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ def _parse_user_torrent_seeding_info(self, html_text, multi_page=False):
page_seeding = len(json_data.get('data'))
for data in json_data.get('data'):
# 暂时无法获取
size = 0
size = int(data.get('fileSize'))
seeders = 0

page_seeding_size += size
Expand Down

0 comments on commit c164896

Please sign in to comment.