diff --git a/bigbluebutton-html5/imports/api/group-chat-msg/server/handlers/groupChatMsgBroadcast.js b/bigbluebutton-html5/imports/api/group-chat-msg/server/handlers/groupChatMsgBroadcast.js index 835a4b1a4a..2e0340f5ea 100644 --- a/bigbluebutton-html5/imports/api/group-chat-msg/server/handlers/groupChatMsgBroadcast.js +++ b/bigbluebutton-html5/imports/api/group-chat-msg/server/handlers/groupChatMsgBroadcast.js @@ -8,5 +8,5 @@ export default function handleGroupChatMsgBroadcast({ body }, meetingId) { check(chatId, String); check(msg, Object); - return addGroupChatMsg(meetingId, chatId, msg); + addGroupChatMsg(meetingId, chatId, msg); }