Matthew Hodgson 2015-11-11 02:07:41 +01:00
parent dd3427d8d0
commit 81128ef06e
1 changed files with 1 additions and 1 deletions

View File

@ -325,7 +325,7 @@ module.exports = {
if (this.refs.messageWrapper) {
var messageWrapperScroll = ReactDOM.findDOMNode(this.refs.messageWrapper).children[2];
var wasAtBottom = this.atBottom;
this.atBottom = messageWrapperScroll.scrollHeight - messageWrapperScroll.scrollTop <= messageWrapperScroll.clientHeight;
this.atBottom = messageWrapperScroll.scrollHeight - messageWrapperScroll.scrollTop <= messageWrapperScroll.clientHeight - 1;
if (this.atBottom && !wasAtBottom) {
this.forceUpdate(); // remove unread msg count
}