We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 274326f commit 110061dCopy full SHA for 110061d
src/frontend/src/services/WebSocketService.tsx
@@ -28,7 +28,7 @@ class WebSocketService {
28
let userId = getUserId();
29
const hasApiSegment = /\/api(\/|$)/i.test(base);
30
const socketPath = hasApiSegment ? '/v3/socket' : '/api/v3/socket';
31
- const url = `${base}${socketPath}${processId ? `/${processId}` : `/${planId}`}&user_id=${userId || ''}`;
+ const url = `${base}${socketPath}${processId ? `/${processId}` : `/${planId}`}?user_id=${userId || ''}`;
32
console.log("Constructed WebSocket URL:", url);
33
return url;
34
}
0 commit comments