You've already forked matrix-react-sdk
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:
@ -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) {
|
if (count > 0) {
|
||||||
debuglog("TimelinePanel: Unpaginating", count, "in direction", dir);
|
debuglog("TimelinePanel: Unpaginating", count, "in direction", dir);
|
||||||
|
Reference in New Issue
Block a user