mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-10 03:50:38 +03:00
Maintain a one-element index with each entry's parent.
This commit is contained in:
parent
1243e26a0d
commit
405bf6b8e4
12
data.c
12
data.c
@ -454,12 +454,16 @@ int _object_add(const char *id, d_char *obj, int ow)
|
|||||||
|
|
||||||
if (!xs_is_null(in_reply_to) && *in_reply_to) {
|
if (!xs_is_null(in_reply_to) && *in_reply_to) {
|
||||||
/* update the children index of the parent */
|
/* update the children index of the parent */
|
||||||
xs *pfn = _object_fn(in_reply_to);
|
xs *c_idx = _object_fn(in_reply_to);
|
||||||
|
|
||||||
pfn = xs_replace_i(pfn, ".json", "_c.idx");
|
c_idx = xs_replace_i(c_idx, ".json", "_c.idx");
|
||||||
index_add(pfn, id);
|
index_add(c_idx, id);
|
||||||
|
|
||||||
srv_debug(0, xs_fmt("object_add added child %s to %s", id, pfn));
|
srv_debug(0, xs_fmt("object_add added child %s to %s", id, c_idx));
|
||||||
|
|
||||||
|
/* create a one-element index with the parent */
|
||||||
|
xs *p_idx = xs_replace(fn, ".json", "_p.idx");
|
||||||
|
index_add(p_idx, in_reply_to);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
Loading…
Reference in New Issue
Block a user