1
0
Fork 0
mirror of https://github.com/FrankerFaceZ/FrankerFaceZ.git synced 2025-08-01 15:38:31 +00:00

Fix rendering of chat action messages. (msg.type is now msg.messageType because Twitch). Remove debug logging from channel_bar.

This commit is contained in:
SirStendec 2018-02-27 01:41:19 -05:00
parent eb967e115f
commit f2479495ce
3 changed files with 2 additions and 3 deletions

View file

@ -487,7 +487,7 @@ export default class ChatHook extends Module {
if ( u )
e.emotes = u.emotes;
if ( original.action )
if ( typeof original.action === 'string' )
e.message = original.action;
else
e.message = original.message.body;