Skip to content

Commit

Permalink
fix: FavoriteList.get_content_video ([漏洞] 收藏夹模块获取视频清单报错 #772)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nemo2011 committed Aug 15, 2024
1 parent bf4aa3e commit 31f5dcc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bilibili_api/favorite_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ async def get_content_video(
raise_for_statement(self.__media_id != None, "视频收藏夹需要 media_id")

return await get_video_favorite_list_content(
self.__media_id, page, keyword, order, tid, mode, self.credential
self.__media_id, page=page, keyword=keyword, order=order, tid=tid, mode=mode, credential=self.credential
)

async def get_content(self, page: int = 1) -> dict:
Expand Down

0 comments on commit 31f5dcc

Please sign in to comment.