diff options
| author | 2022-11-17 09:16:25 +0100 | |
|---|---|---|
| committer | 2022-11-17 09:16:25 +0100 | |
| commit | 35ad83e9ecc0f3ace2921dbd9114350de66e6fda (patch) | |
| tree | 5ca8742bf259874df0f6c918d9a66aa179261ea8 /activitypub.c | |
| parent | Use endpoints/sharedInbox instead of inbox, if there is one. (diff) | |
| download | snac2-35ad83e9ecc0f3ace2921dbd9114350de66e6fda.tar.gz snac2-35ad83e9ecc0f3ace2921dbd9114350de66e6fda.tar.xz snac2-35ad83e9ecc0f3ace2921dbd9114350de66e6fda.zip | |
Also log the inbox in send_to_actor().
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 44b5ba2..96737ea 100644 --- a/activitypub.c +++ b/activitypub.c | |||
| @@ -162,7 +162,7 @@ int send_to_actor(snac *snac, char *actor, char *msg, d_char **payload, int *p_s | |||
| 162 | if (!xs_is_null(inbox)) | 162 | if (!xs_is_null(inbox)) |
| 163 | status = send_to_inbox(snac, inbox, msg, payload, p_size); | 163 | status = send_to_inbox(snac, inbox, msg, payload, p_size); |
| 164 | 164 | ||
| 165 | snac_log(snac, xs_fmt("send_to_actor %s %d", actor, status)); | 165 | snac_log(snac, xs_fmt("send_to_actor %s (%s) %d", actor, inbox, status)); |
| 166 | 166 | ||
| 167 | return status; | 167 | return status; |
| 168 | } | 168 | } |