Fix state reset command

This commit is contained in:
Nicolas Werner 2022-12-27 16:15:49 +01:00
parent 6529240be8
commit 01915360b4
No known key found for this signature in database
GPG key ID: C8D75E610773F2D9
3 changed files with 11 additions and 3 deletions

View file

@ -1669,7 +1669,7 @@ Cache::calculateRoomReadStatus(const std::string &room_id)
}
void
Cache::updateState(const std::string &room, const mtx::responses::StateEvents &state)
Cache::updateState(const std::string &room, const mtx::responses::StateEvents &state, bool wipe)
{
auto txn = lmdb::txn::begin(env_);
auto statesdb = getStatesDb(txn, room);
@ -1677,6 +1677,12 @@ Cache::updateState(const std::string &room, const mtx::responses::StateEvents &s
auto membersdb = getMembersDb(txn, room);
auto eventsDb = getEventsDb(txn, room);
if (wipe) {
membersdb.drop(txn);
statesdb.drop(txn);
stateskeydb.drop(txn);
}
saveStateEvents(txn, statesdb, stateskeydb, membersdb, eventsDb, room, state.events);
RoomInfo updatedInfo;