From 34e7bc0e59cc80612f100a54f5df8bdacefea03d Mon Sep 17 00:00:00 2001 From: grunfink Date: Sat, 28 Feb 2026 08:25:41 +0100 Subject: Inserted a space between month name and number. --- html.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html.c b/html.c index 36d39c4..3a19e26 100644 --- a/html.c +++ b/html.c @@ -225,7 +225,7 @@ xs_str *html_date_label(snac *user, const char *date) return xs_str_utctime(t, "%Y-%m-%d %H:%M"); } - xs_str *date = xs_str_utctime(t, "%b%d %H:%M"); + xs_str *date = xs_str_utctime(t, "%b %d %H:%M"); struct tm tm; localtime_r(&t, &tm); -- cgit v1.2.3