Skip to content

Commit

Permalink
fix(AlistClient):修正iter_path递归调用时未传递is_detail
Browse files Browse the repository at this point in the history
  • Loading branch information
Akimio521 committed Sep 23, 2024
1 parent 8814b24 commit 051a1df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/api/alist/v3/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ async def iter_path(
for path in await self.async_api_fs_list(dir_path):
if path.is_dir:
async for child_path in self.iter_path(
dir_path=path.path, filter=filter
dir_path=path.path, is_detail=is_detail, filter=filter
):
yield child_path

Expand Down

0 comments on commit 051a1df

Please sign in to comment.