From 800bb0123df6abb20e5b06f739ba3917ba3a0b86 Mon Sep 17 00:00:00 2001 From: default Date: Mon, 27 Nov 2023 21:14:27 +0100 Subject: [PATCH] Minor html_entry() tweaks. --- html.c | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/html.c b/html.c index 5399d59..3fbf545 100644 --- a/html.c +++ b/html.c @@ -500,6 +500,7 @@ xs_html *html_instance_body(char *tag) static xs_str *html_instance_header(xs_str *s, char *tag) +/* TO BE REPLACED BY html_instance_body() */ { xs_html *head = html_instance_head(); @@ -1249,14 +1250,6 @@ xs_str *html_entry(snac *user, xs_str *os, const xs_dict *msg, int local, if (level >= 256) return os; - xs *s = xs_str_new("
\n"); - - { - xs *s1 = xs_fmt("\n", md5); - - s = xs_str_cat(s, s1); - } - if (strcmp(type, "Follow") == 0) { xs_html *h = xs_html_tag("div", xs_html_attr("class", "snac-post"), @@ -1292,6 +1285,14 @@ xs_str *html_entry(snac *user, xs_str *os, const xs_dict *msg, int local, && !valid_status(actor_get(actor, NULL))) return os; + xs *s = xs_str_new("
\n"); + + { + xs *s1 = xs_fmt("\n", md5); + + s = xs_str_cat(s, s1); + } + if (level == 0) s = xs_str_cat(s, "
\n"); /** **/ else