mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-15 01:55:03 +00:00
Show the poll as closed if we already voted for it.
This commit is contained in:
parent
5d8e370ec3
commit
6eb0aa105a
1 changed files with 21 additions and 1 deletions
22
html.c
22
html.c
|
@ -896,10 +896,30 @@ xs_str *html_entry(snac *snac, xs_str *os, const xs_dict *msg, int local,
|
|||
xs_list *ao = xs_dict_get(msg, "anyOf");
|
||||
xs_list *p;
|
||||
xs_dict *v;
|
||||
int closed = 0;
|
||||
|
||||
if (xs_dict_get(msg, "closed"))
|
||||
closed = 1;
|
||||
else {
|
||||
/* not yet closed? check if we already voted for this */
|
||||
xs *children = object_children(id);
|
||||
p = children;
|
||||
while (!closed && xs_list_iter(&p, &v)) {
|
||||
xs *msg = NULL;
|
||||
|
||||
if (valid_status(object_get_by_md5(v, &msg))) {
|
||||
const char *atto = xs_dict_get(msg, "attributedTo");
|
||||
|
||||
if (atto && strcmp(atto, snac->actor) == 0)
|
||||
closed = 1; /* closed for us */
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* get the appropriate list of options */
|
||||
p = oo != NULL ? oo : ao;
|
||||
|
||||
if (!xs_is_null(xs_dict_get(msg, "closed"))) {
|
||||
if (closed) {
|
||||
/* closed poll */
|
||||
c = xs_str_cat(c, "<table>\n");
|
||||
|
||||
|
|
Loading…
Reference in a new issue