Fix nullopt when iterating reactions

This commit is contained in:
Nicolas Werner 2020-10-03 17:23:59 +02:00
parent 51964c4fd7
commit abff61bb6c

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) {