Merge pull request #4032 from thelounge/xpaw/help-unread

Increase unread counter for HELP and INFO messages
This commit is contained in:
Pavel Djundik 2020-08-15 11:34:42 +03:00 committed by GitHub
commit 928436a9ce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -14,7 +14,7 @@ module.exports = function (irc, network) {
command: "help", command: "help",
text: data.help, text: data.help,
}); });
lobby.pushMessage(client, msg); lobby.pushMessage(client, msg, true);
} }
}); });
}; };

View File

@ -14,7 +14,7 @@ module.exports = function (irc, network) {
command: "info", command: "info",
text: data.info, text: data.info,
}); });
lobby.pushMessage(client, msg); lobby.pushMessage(client, msg, true);
} }
}); });
}; };