snac2

Fork of https://codeberg.org/grunfink/snac2
git clone https://git.inz.fi/snac2
Log | Files | Refs | README | LICENSE

commit d19fe4157ced8789e43b7c061b11fcc7baf91c78
parent b50631c0f7253e35310a14012e4fa9432aedfb5a
Author: shtrophic <christoph@liebender.dev>
Date:   Thu, 20 Feb 2025 18:15:48 +0100

use xs_dict_append correctly

Diffstat:
Mactivitypub.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/activitypub.c b/activitypub.c @@ -1026,9 +1026,9 @@ void notify(snac *snac, const char *type, const char *utype, const char *actor, from, email, subject); xs *mailinfo = xs_dict_new(); - xs_dict_append(mailinfo, "from", from); - xs_dict_append(mailinfo, "to", email); - xs_dict_append(mailinfo, "body", 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", xs_fmt("%s%s", header, body)); enqueue_email(mailinfo, 0); }