Deleted the 'Older...' details tag because it's becoming too confusing.

This commit is contained in:
default 2022-12-18 20:57:34 +01:00
parent 09c782eaa6
commit 020b854675

13
html.c
View file

@ -753,9 +753,8 @@ d_char *html_entry(snac *snac, d_char *os, char *msg, int local, int level, cons
/** children **/
xs *children = object_children(id);
int left = xs_list_len(children);
if (left) {
if (xs_list_len(children)) {
char *p, *cmd5;
s = xs_str_cat(s, "<details open><summary>...</summary><p>\n");
@ -765,25 +764,15 @@ d_char *html_entry(snac *snac, d_char *os, char *msg, int local, int level, cons
else
s = xs_str_cat(s, "<div>\n");
if (left > 3) {
xs *s1 = xs_fmt("<details><summary>%s</summary>\n", L("Older..."));
s = xs_str_cat(s, s1);
}
p = children;
while (xs_list_iter(&p, &cmd5)) {
xs *chd = NULL;
object_get_by_md5(cmd5, &chd, NULL);
if (left == 3)
s = xs_str_cat(s, "</details>\n");
if (chd != NULL)
s = html_entry(snac, s, chd, local, level + 1, cmd5);
else
snac_debug(snac, 2, xs_fmt("cannot read from timeline child %s", cmd5));
left--;
}
s = xs_str_cat(s, "</div>\n");