mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
All around me are empty spaces
This commit is contained in:
parent
807bbd8f40
commit
7d5c0b7822
1 changed files with 16 additions and 6 deletions
|
@ -1956,16 +1956,26 @@ Cache::saveState(const mtx::responses::Sync &res)
|
|||
bool room_has_space_update = false;
|
||||
for (const auto &e : room.second.state.events) {
|
||||
if (auto se = std::get_if<StateEvent<state::space::Parent>>(&e)) {
|
||||
if (se->state_key.empty()) {
|
||||
nhlog::db()->warn("Skipping space parent with empty state key in room {}",
|
||||
room.first);
|
||||
} else {
|
||||
spaces_with_updates.insert(se->state_key);
|
||||
room_has_space_update = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
for (const auto &e : room.second.timeline.events) {
|
||||
if (auto se = std::get_if<StateEvent<state::space::Parent>>(&e)) {
|
||||
if (se->state_key.empty()) {
|
||||
nhlog::db()->warn("Skipping space child with empty state key in room {}",
|
||||
room.first);
|
||||
} else {
|
||||
spaces_with_updates.insert(se->state_key);
|
||||
room_has_space_update = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (room_has_space_update)
|
||||
rooms_with_space_updates.insert(room.first);
|
||||
|
@ -2013,8 +2023,8 @@ Cache::saveState(const mtx::responses::Sync &res)
|
|||
|
||||
if (auto newRoomInfoDump = nlohmann::json(updatedInfo).dump();
|
||||
newRoomInfoDump != originalRoomInfoDump) {
|
||||
nhlog::db()->critical(
|
||||
"Writing out new room info:\n{}\n{}", originalRoomInfoDump, newRoomInfoDump);
|
||||
// nhlog::db()->critical(
|
||||
// "Writing out new room info:\n{}\n{}", originalRoomInfoDump, newRoomInfoDump);
|
||||
roomsDb_.put(txn, room.first, newRoomInfoDump);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue