From 107e7c0d293f5ffc640daad49f6db9f5af66ebb9 Mon Sep 17 00:00:00 2001 From: default Date: Tue, 8 Oct 2024 20:30:20 +0200 Subject: Fixed emojis in the public profile. --- activitypub.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'activitypub.c') diff --git a/activitypub.c b/activitypub.c index 19e39a9..2791047 100644 --- a/activitypub.c +++ b/activitypub.c @@ -1158,7 +1158,7 @@ xs_dict *msg_actor(snac *snac) msg = xs_dict_set(msg, "preferredUsername", snac->uid); msg = xs_dict_set(msg, "published", xs_dict_get(snac->config, "published")); - xs *f_bio_2 = not_really_markdown(xs_dict_get(snac->config, "bio"), NULL, NULL); + xs *f_bio_2 = not_really_markdown(xs_dict_get(snac->config, "bio"), NULL, &tags); f_bio = process_tags(snac, f_bio_2, &tags); msg = xs_dict_set(msg, "summary", f_bio); msg = xs_dict_set(msg, "tag", tags); -- cgit v1.2.3