Fix state reset command
This commit is contained in:
parent
6529240be8
commit
01915360b4
3 changed files with 11 additions and 3 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue