mirror of
https://github.com/matrix-construct/construct
synced 2024-11-16 23:10:54 +01:00
ircd:Ⓜ️:vm::eval: Apply missing opts.replays in condition.
This commit is contained in:
parent
0d0db66a52
commit
b8c31fe4d3
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue