Merge pull request #2721 from thelounge/xpaw/fix-query-away-spam
Fix displaying away message multiple times in query windows
This commit is contained in:
commit
0569ee2269
@ -34,6 +34,14 @@ module.exports = function(irc, network) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (chan.userAway === away) {
|
||||
return;
|
||||
}
|
||||
|
||||
// Store current away message on channel model,
|
||||
// because query windows have no users
|
||||
chan.userAway = away;
|
||||
|
||||
user = chan.getUser(data.nick);
|
||||
|
||||
break;
|
||||
@ -45,6 +53,8 @@ module.exports = function(irc, network) {
|
||||
return;
|
||||
}
|
||||
|
||||
user.away = away;
|
||||
|
||||
break;
|
||||
|
||||
default:
|
||||
@ -59,7 +69,6 @@ module.exports = function(irc, network) {
|
||||
});
|
||||
|
||||
chan.pushMessage(client, msg);
|
||||
user.away = away;
|
||||
});
|
||||
}
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user