mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
Fix small typo in robustness logic
This commit is contained in:
parent
d075a90024
commit
62d0bdbb77
1 changed files with 1 additions and 1 deletions
|
@ -1638,7 +1638,7 @@ Cache::getTimelineIndex(const std::string &room_id, std::string_view event_id)
|
|||
|
||||
lmdb::dbi orderDb{0};
|
||||
try {
|
||||
orderDb = getOrderToMessageDb(txn, room_id);
|
||||
orderDb = getMessageToOrderDb(txn, room_id);
|
||||
} catch (lmdb::runtime_error &e) {
|
||||
nhlog::db()->error("Can't open db for room '{}', probably doesn't exist yet. ({})",
|
||||
room_id,
|
||||
|
|
Loading…
Reference in a new issue