diff options
| author | Mark Felder <feld@feld.me> | 2021-06-01 14:31:58 -0500 |
|---|---|---|
| committer | Mark Felder <feld@feld.me> | 2021-06-01 14:31:58 -0500 |
| commit | e0cde9a29bea808f5f4b92dbe79d0552dd5b81ed (patch) | |
| tree | a5deb561db30b65cba8cab13fb59a4f0dccb1f5d /src | |
| parent | 0604b1d5b7b19db41096876d0d911ea95c3c778f (diff) | |
Keep channel name the same for backwards compatibility
Diffstat (limited to 'src')
| -rw-r--r-- | src/modules/shout.js | 2 |
1 files changed, 1 insertions, 1 deletions
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) }) |
