From 4a2412a572090b08e4ecca6fb67c3f53a24b0b7c Mon Sep 17 00:00:00 2001 From: Nevyana Angelova Date: Wed, 6 May 2026 17:19:26 +0300 Subject: [PATCH] MM-68540: Drop redundant user_id from refresh WS payload --- server/plugin/plugin.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/plugin/plugin.go b/server/plugin/plugin.go index 0fabff979..4c31a7c5a 100644 --- a/server/plugin/plugin.go +++ b/server/plugin/plugin.go @@ -1312,7 +1312,7 @@ func (p *Plugin) sendRefreshEvent(userID string) { p.client.Frontend.PublishWebSocketEvent( wsEventRefresh, - map[string]any{"user_id": userID}, + nil, &model.WebsocketBroadcast{UserId: userID}, ) }