Merge pull request #4005 from thelounge/xpaw/fix-mode-users
Fix mode message only making last nick clickable
This commit is contained in:
commit
f1fc7a8968
@ -60,17 +60,17 @@ module.exports = function (irc, network) {
|
||||
self: data.nick === irc.user.nick,
|
||||
});
|
||||
|
||||
for (const param of data.raw_params) {
|
||||
const users = [];
|
||||
|
||||
for (const param of data.raw_params) {
|
||||
if (targetChan.findUser(param)) {
|
||||
users.push(param);
|
||||
}
|
||||
}
|
||||
|
||||
if (users.length > 0) {
|
||||
msg.users = users;
|
||||
}
|
||||
}
|
||||
|
||||
targetChan.pushMessage(client, msg);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user