summaryrefslogtreecommitdiff
path: root/activitypub.c
diff options
context:
space:
mode:
authorGravatar default2024-10-08 20:30:20 +0200
committerGravatar default2024-10-08 20:30:20 +0200
commit107e7c0d293f5ffc640daad49f6db9f5af66ebb9 (patch)
treeb54e4823cb26180e98d1a5bafcc0ebe4267f33d3 /activitypub.c
parentMore migration work. (diff)
downloadsnac2-107e7c0d293f5ffc640daad49f6db9f5af66ebb9.tar.gz
snac2-107e7c0d293f5ffc640daad49f6db9f5af66ebb9.tar.xz
snac2-107e7c0d293f5ffc640daad49f6db9f5af66ebb9.zip
Fixed emojis in the public profile.
Diffstat (limited to 'activitypub.c')
-rw-r--r--activitypub.c2
1 files changed, 1 insertions, 1 deletions
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)
1158 msg = xs_dict_set(msg, "preferredUsername", snac->uid); 1158 msg = xs_dict_set(msg, "preferredUsername", snac->uid);
1159 msg = xs_dict_set(msg, "published", xs_dict_get(snac->config, "published")); 1159 msg = xs_dict_set(msg, "published", xs_dict_get(snac->config, "published"));
1160 1160
1161 xs *f_bio_2 = not_really_markdown(xs_dict_get(snac->config, "bio"), NULL, NULL); 1161 xs *f_bio_2 = not_really_markdown(xs_dict_get(snac->config, "bio"), NULL, &tags);
1162 f_bio = process_tags(snac, f_bio_2, &tags); 1162 f_bio = process_tags(snac, f_bio_2, &tags);
1163 msg = xs_dict_set(msg, "summary", f_bio); 1163 msg = xs_dict_set(msg, "summary", f_bio);
1164 msg = xs_dict_set(msg, "tag", tags); 1164 msg = xs_dict_set(msg, "tag", tags);