mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-22 13:25:04 +00:00
Correctly insert polls and attachments inside CW.
This commit is contained in:
parent
90bab08655
commit
dd51da30d8
1 changed files with 2 additions and 2 deletions
4
html.c
4
html.c
|
@ -1581,7 +1581,7 @@ xs_html *html_entry(snac *user, xs_dict *msg, int local,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
xs_html_add(snac_content_wrap,
|
xs_html_add(snac_content,
|
||||||
poll);
|
poll);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1612,7 +1612,7 @@ xs_html *html_entry(snac *user, xs_dict *msg, int local,
|
||||||
xs_html *content_attachments = xs_html_tag("div",
|
xs_html *content_attachments = xs_html_tag("div",
|
||||||
xs_html_attr("class", "snac-content-attachments"));
|
xs_html_attr("class", "snac-content-attachments"));
|
||||||
|
|
||||||
xs_html_add(snac_content_wrap,
|
xs_html_add(snac_content,
|
||||||
content_attachments);
|
content_attachments);
|
||||||
|
|
||||||
xs_list *p = attach;
|
xs_list *p = attach;
|
||||||
|
|
Loading…
Reference in a new issue