Increase buffer size for active and scrolled down channels

This commit is contained in:
Pavel Djundik 2020-01-25 10:58:50 +02:00
parent b890e7e976
commit f92a442330

View file

@ -75,8 +75,9 @@ socket.on("msg", function(data) {
// If message arrives in non active channel, keep only 100 messages
messageLimit = 100;
} else if (channel.scrolledToBottom) {
// If message arrives in active channel, keep 500 messages if scroll is currently at the bottom
messageLimit = 500;
// If message arrives in active channel, keep 1500 messages if scroll is currently at the bottom
// One history load may load up to 1000 messages at once if condendesed or hidden events are enabled
messageLimit = 1500;
}
if (messageLimit > 0 && channel.messages.length > messageLimit) {