diff options
author | Alex Schroeder <alex@gnu.org> | 2022-12-04 10:35:01 +0100 |
---|---|---|
committer | Alex Schroeder <alex@gnu.org> | 2022-12-04 10:35:01 +0100 |
commit | 20f862a651e2829e4f460c1696cb342e906c54bc (patch) | |
tree | d7e03695b62e9eb8d4c3d45083256ac77ba1a169 /activitypub.c | |
parent | 4b6e1df90717e2de9c31bb693a8e50b403d73d6c (diff) |
Use "new" instead of "New" for log messages
The messages for new "Like" and new "Delete" started with an uppercase
n instead of a lowercase n like all the other log messages.
Diffstat (limited to 'activitypub.c')
-rw-r--r-- | activitypub.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activitypub.c b/activitypub.c index 9ac6bed..252c084 100644 --- a/activitypub.c +++ b/activitypub.c @@ -825,7 +825,7 @@ int process_message(snac *snac, char *msg, char *req) follower_add(snac, actor); - snac_log(snac, xs_fmt("New follower %s", actor)); + snac_log(snac, xs_fmt("new follower %s", actor)); do_notify = 1; } else @@ -929,7 +929,7 @@ int process_message(snac *snac, char *msg, char *req) object = xs_dict_get(object, "id"); if (valid_status(timeline_del(snac, object))) - snac_log(snac, xs_fmt("New 'Delete' %s %s", actor, object)); + snac_log(snac, xs_fmt("new 'Delete' %s %s", actor, object)); else snac_debug(snac, 1, xs_fmt("ignored 'Delete' for unknown object %s", object)); } |