From 1624a2dda28f3617172b4b020d41c9cbf6f2ded6 Mon Sep 17 00:00:00 2001 From: "Oleg.Korshul" Date: Sun, 19 Oct 2025 14:53:49 +0300 Subject: [PATCH] Fix bug 75990 --- Common/3dParty/socketio/patches/sio_client_impl_encode.patch | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 Common/3dParty/socketio/patches/sio_client_impl_encode.patch diff --git a/Common/3dParty/socketio/patches/sio_client_impl_encode.patch b/Common/3dParty/socketio/patches/sio_client_impl_encode.patch new file mode 100644 index 0000000000..d7021d6b59 --- /dev/null +++ b/Common/3dParty/socketio/patches/sio_client_impl_encode.patch @@ -0,0 +1,5 @@ +<<<<<<< + if((c >= 'a' && c <= 'z') || (c>= 'A' && c<= 'Z') || (c >= '0' && c<= '9')){ +======= + if((c >= 'a' && c <= 'z') || (c>= 'A' && c<= 'Z') || (c >= '0' && c<= '9') || ('-' == c) || ('_' == c) || ('.' == c) || ('~' == c)){ +>>>>>>>