0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-28 23:08:20 +02:00

Revert "modules/client/sync/rooms/timeline: Fix polylog limited flag condition."

This reverts commit a5aac0eb1f.
This commit is contained in:
Jason Volk 2020-10-06 03:49:13 -07:00
parent 7745bdcc24
commit 66525fd6f3

View file

@ -296,7 +296,7 @@ ircd::m::sync::_room_timeline_polylog_events(data &data,
++i;
}
limited = i < limit;
limited = i > limit;
if(i > 1 && !it)
it.seek(event_idx);