Skip to content

Commit

Permalink
fix: Video.get_info() -412
Browse files Browse the repository at this point in the history
  • Loading branch information
Nemo2011 committed Jan 13, 2024
1 parent 075a894 commit 59cda9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bilibili_api/utils/network.py
Original file line number Diff line number Diff line change
Expand Up @@ -798,7 +798,7 @@ def get_aiohttp_session() -> aiohttp.ClientSession:
session = __aiohttp_session_pool.get(loop, None)
if session is None:
session = aiohttp.ClientSession(
loop=loop, connector=aiohttp.TCPConnector(verify_ssl=False), trust_env=True
loop=loop, connector=aiohttp.TCPConnector(), trust_env=True
)
__aiohttp_session_pool[loop] = session

Expand Down

1 comment on commit 59cda9c

@TimG233
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

牛啊,我刚刚还以为我哪写错了get_info 412了竟然。好快的更!

Please sign in to comment.