0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-29 12:18:54 +02:00

ircd:Ⓜ️:vm::eval: Apply missing opts.replays in condition.

This commit is contained in:
Jason Volk 2020-03-17 11:18:42 -07:00
parent 0d0db66a52
commit b8c31fe4d3

View file

@ -334,7 +334,7 @@ ircd::m::vm::eval::operator()(const vector_view<m::event> &events)
return eval::count(event.event_id) == 0; return eval::count(event.event_id) == 0;
}); });
if(m::exists(event.event_id)) if(likely(!opts->replays) && m::exists(event.event_id))
continue; continue;
} }