summaryrefslogtreecommitdiff
path: root/mastoapi.c
diff options
context:
space:
mode:
Diffstat (limited to 'mastoapi.c')
-rw-r--r--mastoapi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/mastoapi.c b/mastoapi.c
index 3b0cd3e..28418e6 100644
--- a/mastoapi.c
+++ b/mastoapi.c
@@ -1309,10 +1309,10 @@ int mastoapi_get_handler(const xs_dict *req, const char *q_path,
/* is this message from a person we don't follow? */
if (strcmp(atto, snac1.actor) && !following_check(&snac1, atto)) {
- /* if we didn't boost it, discard */
+ /* discard if it was not boosted */
xs *idx = object_announces(id);
- if (xs_list_in(idx, snac1.md5) == -1)
+ if (xs_list_len(idx) == 0)
continue;
}