Hidden conversations are not rendered instead of given a 'display: none'.

This commit is contained in:
default 2023-06-11 20:34:26 +02:00
parent 5cdfd64d61
commit d9d4ffbc61

10
html.c
View file

@ -769,13 +769,11 @@ xs_str *html_entry(snac *snac, xs_str *os, const xs_dict *msg, int local,
if (local && !is_msg_public(snac, msg)) if (local && !is_msg_public(snac, msg))
return os; return os;
xs *s = xs_str_new(NULL); /* hidden? do nothing more for this conversation */
/* top wrap */
if (is_hidden(snac, id)) if (is_hidden(snac, id))
s = xs_str_cat(s, "<div style=\"display: none\">\n"); return os;
else
s = xs_str_cat(s, "<div>\n"); xs *s = xs_str_new("<div>\n");
{ {
xs *s1 = xs_fmt("<a name=\"%s_entry\"></a>\n", md5); xs *s1 = xs_fmt("<a name=\"%s_entry\"></a>\n", md5);