@@ -42,6 +42,7 @@ export function parseMessageForCommands (chat, text) {
_converse.chatboxviews.get(chat.get('jid'))?.close();
return true;
} else if (match[1] === 'help') {
+ chat.set({ 'show_help_messages': false }, { 'silent': true });
chat.set({ 'show_help_messages': true });
}
@@ -210,6 +210,7 @@ export function parseMessageForMUCCommands (muc, text) {
break;
case 'help': {
+ muc.set({ 'show_help_messages': false }, { 'silent': true });
muc.set({ 'show_help_messages': true });