From e0cde9a29bea808f5f4b92dbe79d0552dd5b81ed Mon Sep 17 00:00:00 2001 From: Mark Felder Date: Tue, 1 Jun 2021 14:31:58 -0500 Subject: [PATCH] Keep channel name the same for backwards compatibility --- src/modules/shout.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/shout.js b/src/modules/shout.js index c04f08e9..507a4d83 100644 --- a/src/modules/shout.js +++ b/src/modules/shout.js @@ -17,7 +17,7 @@ const shout = { }, actions: { initializeShout (store, socket) { - const channel = socket.channel('shout:public') + const channel = socket.channel('chat:public') channel.on('new_msg', (msg) => { store.commit('addMessage', msg) })