From cb6ba6c7726a72e775cb436ff590d0d154ec1204 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=A8=E9=A1=BA=E5=BC=BA?= <978987373@qq.com> Date: Thu, 14 Aug 2025 14:07:10 +0800 Subject: [PATCH] fix param bug (#8134) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: 小强 --- frontend/src/pages/excalidraw-editor/socket/socket-client.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/pages/excalidraw-editor/socket/socket-client.js b/frontend/src/pages/excalidraw-editor/socket/socket-client.js index f707d7c6b2..3598b7e944 100644 --- a/frontend/src/pages/excalidraw-editor/socket/socket-client.js +++ b/frontend/src/pages/excalidraw-editor/socket/socket-client.js @@ -38,7 +38,7 @@ class SocketClient { getParams = (payload = {}) => { const { docUuid, user } = this.config; return { - docUuid, + doc_uuid: docUuid, user, ...payload, };