diff options
| author | grunfink <grunfink@comam.es> | 2025-04-27 05:26:42 +0200 |
|---|---|---|
| committer | grunfink <grunfink@comam.es> | 2025-04-27 05:26:42 +0200 |
| commit | c27e1aa5a126d6676232e7e3cb7cff95a3661b35 (patch) | |
| tree | 207b32d1841a2ebf9f709b14e20b8689d6c9e939 | |
| parent | aa15f84b34e51ae8121a8174ea68f105d295699c (diff) | |
Fixed typo.
| -rw-r--r-- | activitypub.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/activitypub.c b/activitypub.c index fd2d81a..fbf7a1f 100644 --- a/activitypub.c +++ b/activitypub.c @@ -1053,10 +1053,10 @@ void notify(snac *snac, const char *type, const char *utype, const char *actor, from, email, subject); xs *mailinfo = xs_dict_new(); - xs *body = xs_fmt("%s%s", header, body); + xs *bd = xs_fmt("%s%s", header, body); mailinfo = xs_dict_append(mailinfo, "from", from); mailinfo = xs_dict_append(mailinfo, "to", email); - mailinfo = xs_dict_append(mailinfo, "body", body); + mailinfo = xs_dict_append(mailinfo, "body", bd); enqueue_email(mailinfo, 0); } |