mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-05-20 17:45:45 -05:00
Disable apply_mask C implementation
This commit is contained in:
parent
0423915e24
commit
b4e0d5ac16
1 changed files with 6 additions and 0 deletions
|
@ -47,6 +47,12 @@
|
|||
if urllib3_version and urllib3_version >= (1, 26, 17):
|
||||
urllib3_supported = True
|
||||
|
||||
|
||||
# Disable apply_mask C implementation
|
||||
import websockets.frames
|
||||
from websockets.utils import apply_mask
|
||||
websockets.frames.apply_mask = apply_mask
|
||||
|
||||
import websockets.sync.client
|
||||
from websockets.uri import parse_uri
|
||||
|
||||
|
|
Loading…
Reference in a new issue