Only connect to chat upon authenticating
hello! this is my first time contributing to pleroma, so please be aware
something i noticed while using pleroma is that if you are logged out, then cryptic websocket errors get outputted to the console (as outlined in #403 (closed)). (this only happens with pleroma instances that have chat enabled.)
while checking the code, it appears that p-fe makes a connection to the chat channel if chat is enabled, even if we aren't logged in. this patch adds a secondary condition that enforces the existence of a websocket token before attempting to connect to chat. this patch only creates a connection to the chat channel upon authenticating. the websocket token is only set upon verifying credentials, so:
this means that only logged in users are ever able to see chat, but i'm sure that's the intended behavior... right?
Merge request reports
Activity
50 50 }, 51 51 initializeSocket (store) { 52 52 // Set up websocket connection 53 if (!store.state.chatDisabled) { 53 if (!store.state.chatDisabled && store.state.wsToken) { okay, but that will require extra logic to tear down the chat socket when logging out. this is because the current behavior is to create the socket upon page load. when creating upon login, it's possible to "duplicate" the channel by logging out and logging back in
Edited by slicechanged this line in version 2 of the diff
added 1 commit
- e618c6ff - Only connect to chat when authenticating in the first place
mentioned in commit f52a33f7
mentioned in merge request !894 (merged)