Merge pull request #1949 from thelounge/xpaw/no-history-spam

Only emit "more" history to the client that requested it
This commit is contained in:
Jérémie Astori 2018-01-07 13:37:36 -05:00 committed by GitHub
commit b8bd6fccbb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 8 additions and 4 deletions

View file

@ -396,7 +396,7 @@ Client.prototype.more = function(data) {
const target = client.find(data.target);
if (!target) {
return;
return null;
}
const chan = target.chan;
@ -415,10 +415,10 @@ Client.prototype.more = function(data) {
messages = chan.messages.slice(Math.max(0, index - 100), index);
}
client.emit("more", {
return {
chan: chan.id,
messages: messages,
});
};
};
Client.prototype.open = function(socketId, target) {

View file

@ -258,7 +258,11 @@ function initializeClient(socket, client, token, lastMessage) {
socket.on(
"more",
function(data) {
client.more(data);
const history = client.more(data);
if (history !== null) {
socket.emit("more", history);
}
}
);