diff options
| author | 2022-09-25 09:07:43 +0200 | |
|---|---|---|
| committer | 2022-09-25 09:07:43 +0200 | |
| commit | 4f328eec1f428d4e87adeb4c4eaf1e81afe26913 (patch) | |
| tree | a3636038d0347efb593f1bf580fbe67d3ab0bed1 /activitypub.c | |
| parent | Process 'Create' messages (untested). (diff) | |
| download | snac2-4f328eec1f428d4e87adeb4c4eaf1e81afe26913.tar.gz snac2-4f328eec1f428d4e87adeb4c4eaf1e81afe26913.tar.xz snac2-4f328eec1f428d4e87adeb4c4eaf1e81afe26913.zip | |
Some fixes to timeline_add().
Diffstat (limited to 'activitypub.c')
| -rw-r--r-- | activitypub.c | 2 |
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 | } |