commit e9711f94d06c76d213e9d43f9d228a4cf11fdc1a
parent 833540d090769436c69f294429df85e10919c015
Author: default <nobody@localhost>
Date: Wed, 28 Jun 2023 10:50:17 +0200
Skip leading zeros en poll closing time.
Diffstat:
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/html.c b/html.c
@@ -1071,8 +1071,12 @@ xs_str *html_entry(snac *snac, xs_str *os, const xs_dict *msg, int local,
if (t1 > 0 && t1 > t0) {
time_t diff_time = t1 - t0;
xs *tf = xs_str_time_diff(diff_time);
+ char *p = tf;
- xs *s1 = xs_fmt("<p>%s %s</p>", L("Closes in"), tf);
+ /* skip leading zeros */
+ for (; *p == '0' || *p == ':'; p++);
+
+ xs *s1 = xs_fmt("<p>%s %s</p>", L("Closes in"), p);
c = xs_str_cat(c, s1);
}
}