From 1624a2dda28f3617172b4b020d41c9cbf6f2ded6 Mon Sep 17 00:00:00 2001 From: "Oleg.Korshul" Date: Sun, 19 Oct 2025 14:53:49 +0300 Subject: [PATCH 1/2] 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)){ +>>>>>>> From 54ce32cfafa33cd4e69851141ab83fa592c0cb47 Mon Sep 17 00:00:00 2001 From: Oleg Korshul Date: Mon, 20 Oct 2025 16:05:16 +0300 Subject: [PATCH 2/2] Add file to ignore --- Common/3dParty/socketio/.gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/Common/3dParty/socketio/.gitignore b/Common/3dParty/socketio/.gitignore index 7e759d52fb..68cbbff166 100644 --- a/Common/3dParty/socketio/.gitignore +++ b/Common/3dParty/socketio/.gitignore @@ -1 +1,2 @@ socket.io-client-cpp/ +socketio.data \ No newline at end of file