You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
in 'cli-chat' example cli-chat.controller-behaviors.chat/update-user! function assigns 'loggable-user' in the 'channels' atom under the ':user' key so 'loggable-user' doesn't replace 'guest' in the channel.
#247
When we call
/me
endpoint the response looks like this:My suggestion is to change the (swap! channels update ch assoc :user loggable-user) in 'update-user!' to this:
(swap! channels update ch merge loggable-user)
to resolve this problem.The text was updated successfully, but these errors were encountered: