summaryrefslogtreecommitdiff
path: root/activitypub.c
diff options
context:
space:
mode:
Diffstat (limited to 'activitypub.c')
-rw-r--r--activitypub.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/activitypub.c b/activitypub.c
index a6fa645..ba45395 100644
--- a/activitypub.c
+++ b/activitypub.c
@@ -204,7 +204,7 @@ void process_message(snac *snac, char *msg, char *req)
204 char *id = xs_dict_get(object, "id"); 204 char *id = xs_dict_get(object, "id");
205 char *in_reply_to = xs_dict_get(object, "inReplyTo"); 205 char *in_reply_to = xs_dict_get(object, "inReplyTo");
206 206
207 if (in_reply_to != NULL) { 207 if (xs_is_null(in_reply_to)) {
208 /* recursively download ancestors */ 208 /* recursively download ancestors */
209 /* ... */ 209 /* ... */
210 } 210 }