mirror of
https://github.com/element-hq/element-web
synced 2024-11-24 18:25:49 +03:00
EventIndex: Mark the initial checkpoints for a full crawl.
The logic determining if a batch of events is already in the database has been reported to be faulty. Since we know that when we add initial checkpoints they need to go to the start of the timeline we can mark them to do a full crawl which will skip the test if the events are already in the database. This is a quick fix for this and checkpoints that are added after a gap in the timeline might incorrectly conclude the same resulting in missing events if there was a gap and the issue is triggered.
This commit is contained in:
parent
930f93b974
commit
bec061239a
1 changed files with 1 additions and 0 deletions
|
@ -109,6 +109,7 @@ export default class EventIndex extends EventEmitter {
|
|||
roomId: room.roomId,
|
||||
token: token,
|
||||
direction: "b",
|
||||
fullCrawl: true,
|
||||
};
|
||||
|
||||
const forwardCheckpoint = {
|
||||
|
|
Loading…
Reference in a new issue