mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-23 03:18:49 +03:00
Fix duplicate check possibly leaving large gaps if initial state was not in timeline
This commit is contained in:
parent
6d35ef2f2f
commit
80fa3e801f
1 changed files with 2 additions and 2 deletions
|
@ -3005,7 +3005,7 @@ Cache::saveTimelineMessages(lmdb::txn &txn,
|
||||||
// is already in the DB, we skip putting it (again) in ordered DBs, and only
|
// is already in the DB, we skip putting it (again) in ordered DBs, and only
|
||||||
// update the event itself and its relations.
|
// update the event itself and its relations.
|
||||||
std::string_view unused_read;
|
std::string_view unused_read;
|
||||||
if (!eventsDb.get(txn, event_id, unused_read)) {
|
if (!evToOrderDb.get(txn, event_id, unused_read)) {
|
||||||
++index;
|
++index;
|
||||||
|
|
||||||
nhlog::db()->debug("saving '{}'", orderEntry.dump());
|
nhlog::db()->debug("saving '{}'", orderEntry.dump());
|
||||||
|
@ -3090,7 +3090,7 @@ Cache::saveOldMessages(const std::string &room_id, const mtx::responses::Message
|
||||||
// already in the DB, we skip putting it (again) in ordered DBs, and only update the
|
// already in the DB, we skip putting it (again) in ordered DBs, and only update the
|
||||||
// event itself and its relations.
|
// event itself and its relations.
|
||||||
std::string_view unused_read;
|
std::string_view unused_read;
|
||||||
if (!eventsDb.get(txn, event_id, unused_read)) {
|
if (!evToOrderDb.get(txn, event_id, unused_read)) {
|
||||||
--index;
|
--index;
|
||||||
|
|
||||||
json orderEntry = json::object();
|
json orderEntry = json::object();
|
||||||
|
|
Loading…
Reference in a new issue