snac2

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

commit c88d7e72f0531114e7e000f79ee6ce9a11f23952
parent 09d268495c12d3c00a7293fbf445830bcc9d74c3
Author: default <nobody@localhost>
Date:   Sat, 23 Nov 2024 17:16:31 +0100

Minor tweak to new metadata.

Diffstat:
Mactivitypub.c | 2+-
Mhtml.c | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/activitypub.c b/activitypub.c @@ -1226,7 +1226,7 @@ xs_dict *msg_actor(snac *snac) else if (xs_type(md) == XSTYPE_STRING) { metadata = xs_dict_new(); - xs *l = xs_split(md, "\r\n"); + xs *l = xs_split(md, "\n"); const char *ll; xs_list_foreach(l, ll) { diff --git a/html.c b/html.c @@ -852,7 +852,7 @@ static xs_html *html_user_body(snac *user, int read_only) if (xs_type(md) == XSTYPE_STRING) { /* convert to dict for easier iteration */ metadata = xs_dict_new(); - xs *l = xs_split(md, "\r\n"); + xs *l = xs_split(md, "\n"); const char *ll; xs_list_foreach(l, ll) {