mirror of
https://github.com/thelounge/thelounge
synced 2024-11-23 04:23:13 +00:00
Merge pull request #4032 from thelounge/xpaw/help-unread
Increase unread counter for HELP and INFO messages
This commit is contained in:
commit
928436a9ce
2 changed files with 2 additions and 2 deletions
|
@ -14,7 +14,7 @@ module.exports = function (irc, network) {
|
|||
command: "help",
|
||||
text: data.help,
|
||||
});
|
||||
lobby.pushMessage(client, msg);
|
||||
lobby.pushMessage(client, msg, true);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
|
|
@ -14,7 +14,7 @@ module.exports = function (irc, network) {
|
|||
command: "info",
|
||||
text: data.info,
|
||||
});
|
||||
lobby.pushMessage(client, msg);
|
||||
lobby.pushMessage(client, msg, true);
|
||||
}
|
||||
});
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue