ActionCable streaming from a strange channel name
Hello!
I'm following your course "Group Chat with ActionCable" and everything works fine, except one thing:
I'm following your course "Group Chat with ActionCable" and everything works fine, except one thing:
When I broadcast to
ActionCable.server.broadcast "rooms:#{message.room.id}"
, it does nothing. The "received" function is never called.
Something is strange in my app console :
ActionCable] [User 6] RoomsChannel is streaming from rooms:rooms:1
Why do I have 2 times rooms ? I think that's the problem. But in my RoomsChannel file I'm streaming the right name:
stream_for "rooms:#{room.id}"
Thanks in advance for your answer!
Best regards,
Valentin