summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar default2023-12-03 11:51:26 +0100
committerGravatar default2023-12-03 11:51:26 +0100
commita658e5d1c70cb1270216a517e76a87acd3b04653 (patch)
tree011fb453037b2870d1bd4c1e58152b64f0912ca6
parentBackport from xs. (diff)
downloadsnac2-a658e5d1c70cb1270216a517e76a87acd3b04653.tar.gz
snac2-a658e5d1c70cb1270216a517e76a87acd3b04653.tar.xz
snac2-a658e5d1c70cb1270216a517e76a87acd3b04653.zip
Don't show polls as 'votable' from the public timeline.
-rw-r--r--html.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/html.c b/html.c
index ff25acf..7707413 100644
--- a/html.c
+++ b/html.c
@@ -1443,6 +1443,9 @@ xs_html *html_entry(snac *user, xs_dict *msg, int local,
1443 1443
1444 xs_html *poll = xs_html_tag("div", NULL); 1444 xs_html *poll = xs_html_tag("div", NULL);
1445 1445
1446 if (local)
1447 closed = 1; /* non-identified page; show as closed */
1448 else
1446 if (xs_dict_get(msg, "closed")) 1449 if (xs_dict_get(msg, "closed"))
1447 closed = 2; 1450 closed = 2;
1448 else 1451 else