1
0
Fork 0
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:
coletdjnz 2024-05-18 18:24:27 +12:00
parent c2718e7ff5
commit 6dcc99ee4a
No known key found for this signature in database
GPG key ID: 91984263BB39894A

View file

@ -47,9 +47,11 @@
# Disable apply_mask C implementation # Disable apply_mask C implementation
# Seems to help reduce "Fatal Python error: Aborted" in CI # Seems to help reduce "Fatal Python error: Aborted" in CI
import websockets.frames with contextlib.suppress(Exception):
import websockets.utils import websockets.frames
websockets.frames.apply_mask = websockets.utils.apply_mask import websockets.legacy.framing
import websockets.utils
websockets.frames.apply_mask = websockets.legacy.framing = websockets.utils.apply_mask
import websockets.sync.client import websockets.sync.client
from websockets.uri import parse_uri from websockets.uri import parse_uri