Fix nullopt when iterating reactions

This commit is contained in:
Nicolas Werner 2020-10-03 17:23:59 +02:00
parent 51964c4fd7
commit abff61bb6c
1 changed files with 2 additions and 1 deletions

View File

@ -390,7 +390,8 @@ EventStore::reactions(const std::string &event_id)
continue;
if (auto reaction = std::get_if<mtx::events::RoomEvent<mtx::events::msg::Reaction>>(
related_event)) {
related_event);
reaction && reaction->content.relates_to.key) {
auto &agg = aggregation[reaction->content.relates_to.key.value()];
if (agg.count == 0) {