Ver código fonte

content_search() also looks in the attributedTo field.

grunfink 11 meses atrás
pai
commit
5885589e58
1 arquivos alterados com 3 adições e 0 exclusões
  1. 3 0
      data.c

+ 3 - 0
data.c

@@ -2984,11 +2984,14 @@ xs_list *content_search(snac *user, const char *regex,
         xs *c = xs_str_new(NULL);
         const char *content = xs_dict_get(post, "content");
         const char *name    = xs_dict_get(post, "name");
+        const char *atto    = get_atto(post);
 
         if (!xs_is_null(content))
             c = xs_str_cat(c, content);
         if (!xs_is_null(name))
             c = xs_str_cat(c, " ", name);
+        if (!xs_is_null(atto))
+            c = xs_str_cat(c, " ", atto);
 
         /* add alt-texts from attachments */
         const xs_list *atts = xs_dict_get(post, "attachment");