aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordefault <nobody@localhost>2024-12-19 04:24:25 +0100
committerdefault <nobody@localhost>2024-12-19 04:24:25 +0100
commit844825f190f8651da36100d2a50cef54eaac14c1 (patch)
tree6e44a7b8d60230be343913046fcec0d56c9bb8dc
parente9f3d5120c23406d0e395bea9daf23b2a1300c88 (diff)
content_search() also checks for the post id.
-rw-r--r--data.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/data.c b/data.c
index 4e5851a..038d7fd 100644
--- 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");