Open SoftPlaceWeb-Dev opened 7 months ago
with this setting:
catChat.settings = { user: 'user_123', }
the websocket connection it is always open with the user id 'user'.
instead passing the user directly into the path works:
catChat.settings = { user: 'user_123', ws: { onFailed: (error) => { console.log(error.description) }, 'path': 'ws/user_123' }, }
Can confirm, i'm using the cdn version so it would be helpful if a fix can be deployed there too.
with this setting:
the websocket connection it is always open with the user id 'user'.
instead passing the user directly into the path works: