Skip to content

Commit

Permalink
修复获取网盘地址失败时的链接显示问题。
Browse files Browse the repository at this point in the history
  • Loading branch information
rippergs committed Dec 4, 2024
1 parent aa7b910 commit 28a8dc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion service/aipanso_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ def search_dj(self, keyword):
fid = item['link'][3:]
pan_url = self.get_pan_url(fid)
if pan_url is None:
content += f"{i}{item['title']} - 获取网盘地址失败\n\n"
content += f"{i}{item['title']} - https://www.aipanso.com/{item['link']}\n\n"
else:
content += f"{i}{item['title']} - {pan_url}\n\n"

Expand Down

0 comments on commit 28a8dc8

Please sign in to comment.