diff options
Diffstat (limited to 'activitypub.c')
| -rw-r--r-- | activitypub.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/activitypub.c b/activitypub.c index e2519e6..a209abd 100644 --- a/activitypub.c +++ b/activitypub.c | |||
| @@ -1026,9 +1026,9 @@ void notify(snac *snac, const char *type, const char *utype, const char *actor, | |||
| 1026 | from, email, subject); | 1026 | from, email, subject); |
| 1027 | 1027 | ||
| 1028 | xs *mailinfo = xs_dict_new(); | 1028 | xs *mailinfo = xs_dict_new(); |
| 1029 | xs_dict_append(mailinfo, "from", from); | 1029 | mailinfo = xs_dict_append(mailinfo, "from", from); |
| 1030 | xs_dict_append(mailinfo, "to", email); | 1030 | mailinfo = xs_dict_append(mailinfo, "to", email); |
| 1031 | xs_dict_append(mailinfo, "body", xs_fmt("%s%s", header, body)); | 1031 | mailinfo = xs_dict_append(mailinfo, "body", xs_fmt("%s%s", header, body)); |
| 1032 | 1032 | ||
| 1033 | enqueue_email(mailinfo, 0); | 1033 | enqueue_email(mailinfo, 0); |
| 1034 | } | 1034 | } |