mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-03-09 12:50:23 -05:00
Apply for legacy framing too for safe measure
This commit is contained in:
parent
c2718e7ff5
commit
6dcc99ee4a
1 changed files with 5 additions and 3 deletions
|
@ -47,9 +47,11 @@
|
|||
|
||||
# Disable apply_mask C implementation
|
||||
# Seems to help reduce "Fatal Python error: Aborted" in CI
|
||||
with contextlib.suppress(Exception):
|
||||
import websockets.frames
|
||||
import websockets.legacy.framing
|
||||
import websockets.utils
|
||||
websockets.frames.apply_mask = websockets.utils.apply_mask
|
||||
websockets.frames.apply_mask = websockets.legacy.framing = websockets.utils.apply_mask
|
||||
|
||||
import websockets.sync.client
|
||||
from websockets.uri import parse_uri
|
||||
|
|
Loading…
Reference in a new issue