mirror of
https://github.com/matrix-construct/construct
synced 2024-11-04 21:08:57 +01:00
ircd:Ⓜ️:dbs: Call these indexers at the end of the event indexers.
This commit is contained in:
parent
64a7bbed00
commit
5e549261fc
1 changed files with 6 additions and 6 deletions
|
@ -321,17 +321,17 @@ ircd::m::dbs::_index_event(db::txn &txn,
|
||||||
if(opts.appendix.test(appendix::EVENT_JSON))
|
if(opts.appendix.test(appendix::EVENT_JSON))
|
||||||
_index_event_json(txn, event, opts);
|
_index_event_json(txn, event, opts);
|
||||||
|
|
||||||
if(opts.appendix.test(appendix::EVENT_HORIZON_RESOLVE) && opts.horizon_resolve.any())
|
|
||||||
_index_event_horizon_resolve(txn, event, opts);
|
|
||||||
|
|
||||||
if(opts.appendix.test(appendix::EVENT_REFS) && opts.event_refs.any())
|
|
||||||
_index_event_refs(txn, event, opts);
|
|
||||||
|
|
||||||
if(opts.appendix.test(appendix::EVENT_SENDER))
|
if(opts.appendix.test(appendix::EVENT_SENDER))
|
||||||
_index_event_sender(txn, event, opts);
|
_index_event_sender(txn, event, opts);
|
||||||
|
|
||||||
if(opts.appendix.test(appendix::EVENT_TYPE))
|
if(opts.appendix.test(appendix::EVENT_TYPE))
|
||||||
_index_event_type(txn, event, opts);
|
_index_event_type(txn, event, opts);
|
||||||
|
|
||||||
|
if(opts.appendix.test(appendix::EVENT_REFS) && opts.event_refs.any())
|
||||||
|
_index_event_refs(txn, event, opts);
|
||||||
|
|
||||||
|
if(opts.appendix.test(appendix::EVENT_HORIZON_RESOLVE) && opts.horizon_resolve.any())
|
||||||
|
_index_event_horizon_resolve(txn, event, opts);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
Loading…
Reference in a new issue