summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--html.c5
-rw-r--r--snac.h2
2 files changed, 5 insertions, 2 deletions
diff --git a/html.c b/html.c
index 7fc3a73..b8bb1af 100644
--- a/html.c
+++ b/html.c
@@ -518,7 +518,10 @@ d_char *html_entry(snac *snac, d_char *os, char *msg, int local, int level, int
518 if (strcmp(type, "Note") != 0) { 518 if (strcmp(type, "Note") != 0) {
519 s = xs_str_cat(s, "<div class=\"snac-post\">\n"); 519 s = xs_str_cat(s, "<div class=\"snac-post\">\n");
520 520
521 xs *s1 = xs_fmt("<p>%s</p>\n", type); 521 xs *s1 = xs_fmt("<p>%s ?</p>\n", type);
522 s = xs_str_cat(s, s1);
523
524 s = xs_str_cat(s, "</div>\n");
522 525
523 return xs_str_cat(os, s); 526 return xs_str_cat(os, s);
524 } 527 }
diff --git a/snac.h b/snac.h
index 0980321..32d7f14 100644
--- a/snac.h
+++ b/snac.h
@@ -1,7 +1,7 @@
1/* snac - A simple, minimalistic ActivityPub instance */ 1/* snac - A simple, minimalistic ActivityPub instance */
2/* copyright (c) 2022 grunfink - MIT license */ 2/* copyright (c) 2022 grunfink - MIT license */
3 3
4#define VERSION "2.12" 4#define VERSION "2.13-dev"
5 5
6#define USER_AGENT "snac/" VERSION 6#define USER_AGENT "snac/" VERSION
7 7