logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git
commit: e0cde9a29bea808f5f4b92dbe79d0552dd5b81ed
parent 0604b1d5b7b19db41096876d0d911ea95c3c778f
Author: Mark Felder <feld@feld.me>
Date:   Tue,  1 Jun 2021 14:31:58 -0500

Keep channel name the same for backwards compatibility

Diffstat:

Msrc/modules/shout.js2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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) })