Skip to content

Commit

Permalink
fix(ani2alist):修正目录__url错误
Browse files Browse the repository at this point in the history
  • Loading branch information
Akimio521 committed Jul 11, 2024
1 parent bdeb250 commit 49c1f44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/modules/ani2alist/ani2alist.py
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ async def parse_data(_url: str = url) -> dict:
]
elif mimeType == "application/vnd.google-apps.folder":
logger.debug(f"获取目录:{name}")
__url = url + name + "/"
__url = _url + name + "/"
_anime_dict[name] = await parse_data(__url)
else:
raise RuntimeError(
Expand Down

0 comments on commit 49c1f44

Please sign in to comment.