snac2

Fork of https://codeberg.org/grunfink/snac2
git clone https://git.inz.fi/snac2
Log | Files | Refs | README | LICENSE

commit 844825f190f8651da36100d2a50cef54eaac14c1
parent e9f3d5120c23406d0e395bea9daf23b2a1300c88
Author: default <nobody@localhost>
Date:   Thu, 19 Dec 2024 04:24:25 +0100

content_search() also checks for the post id.

Diffstat:
Mdata.c | 8++++++++
1 file changed, 8 insertions(+), 0 deletions(-)

diff --git a/data.c b/data.c @@ -2742,6 +2742,14 @@ xs_list *content_search(snac *user, const char *regex, if (id == NULL || is_hidden(user, id)) continue; + /* test for the post URL */ + if (strcmp(id, regex) == 0) { + if (xs_set_add(&seen, md5) == 1) + show--; + + continue; + } + xs *c = xs_str_new(NULL); const char *content = xs_dict_get(post, "content"); const char *name = xs_dict_get(post, "name");