1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-07-28 15:22:05 +03:00

Reduce number of unpaginated events by 1

When unpaginating in the backwards direction
This commit is contained in:
Luke Barnard
2017-03-30 18:02:33 +01:00
parent 847c01b9be
commit 8e5a83a056

View File

@ -263,7 +263,7 @@ var TimelinePanel = React.createClass({
}
);
let count = backwards ? marker + 1 : this.state.events.length - marker;
let count = backwards ? marker : this.state.events.length - marker;
if (count > 0) {
debuglog("TimelinePanel: Unpaginating", count, "in direction", dir);