diff options
| author | 2023-12-17 15:21:16 +0100 | |
|---|---|---|
| committer | 2023-12-17 15:21:16 +0100 | |
| commit | f8196b4ef6369b5cbaf746cbaf6101eba1fb783b (patch) | |
| tree | e1142beb5839eaa332778c83c79cbfe5b0b0573e /activitypub.c | |
| parent | Fixed shared inbox distribution logic for Delete messages. (diff) | |
| download | snac2-f8196b4ef6369b5cbaf746cbaf6101eba1fb783b.tar.gz snac2-f8196b4ef6369b5cbaf746cbaf6101eba1fb783b.tar.xz snac2-f8196b4ef6369b5cbaf746cbaf6101eba1fb783b.zip | |
New function srv_archive_qitem().
Diffstat (limited to 'activitypub.c')
| -rw-r--r-- | activitypub.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/activitypub.c b/activitypub.c index 130c283..fa06a89 100644 --- a/activitypub.c +++ b/activitypub.c | |||
| @@ -2135,8 +2135,10 @@ void process_queue_item(xs_dict *q_item) | |||
| 2135 | 2135 | ||
| 2136 | unlink(tmpfn); | 2136 | unlink(tmpfn); |
| 2137 | 2137 | ||
| 2138 | if (cnt == 0) | 2138 | if (cnt == 0) { |
| 2139 | srv_archive_qitem(q_item); | ||
| 2139 | srv_debug(1, xs_fmt("no valid recipients for %s", tmpfn)); | 2140 | srv_debug(1, xs_fmt("no valid recipients for %s", tmpfn)); |
| 2141 | } | ||
| 2140 | } | 2142 | } |
| 2141 | } | 2143 | } |
| 2142 | else | 2144 | else |