diff options
| author | 2023-05-24 13:49:34 +0200 | |
|---|---|---|
| committer | 2023-05-24 13:49:34 +0200 | |
| commit | e75b76da7c8f8e080e084cfbd3f98058c5a43a98 (patch) | |
| tree | 72049df2179997a92d09ccb2d88896f6e6089aff | |
| parent | Fixed multiple choice polls. (diff) | |
| download | penes-snac2-e75b76da7c8f8e080e084cfbd3f98058c5a43a98.tar.gz penes-snac2-e75b76da7c8f8e080e084cfbd3f98058c5a43a98.tar.xz penes-snac2-e75b76da7c8f8e080e084cfbd3f98058c5a43a98.zip | |
Tweaked log message.
| -rw-r--r-- | activitypub.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activitypub.c b/activitypub.c index 82f55f3..bbf7a03 100644 --- a/activitypub.c +++ b/activitypub.c | |||
| @@ -1747,7 +1747,7 @@ int activitypub_post_handler(const xs_dict *req, const char *q_path, | |||
| 1747 | /* if the message is from a muted actor, reject it right now */ | 1747 | /* if the message is from a muted actor, reject it right now */ |
| 1748 | if (!xs_is_null(v = xs_dict_get(msg, "actor")) && *v) { | 1748 | if (!xs_is_null(v = xs_dict_get(msg, "actor")) && *v) { |
| 1749 | if (is_muted(&snac, v)) { | 1749 | if (is_muted(&snac, v)) { |
| 1750 | srv_log(xs_fmt("rejected message from MUTEd actor %s", v)); | 1750 | snac_log(&snac, xs_fmt("rejected message from MUTEd actor %s", v)); |
| 1751 | 1751 | ||
| 1752 | *body = xs_str_new("rejected"); | 1752 | *body = xs_str_new("rejected"); |
| 1753 | *ctype = "text/plain"; | 1753 | *ctype = "text/plain"; |