diff options
author | default <nobody@localhost> | 2023-12-03 11:51:26 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2023-12-03 11:51:26 +0100 |
commit | a658e5d1c70cb1270216a517e76a87acd3b04653 (patch) | |
tree | 011fb453037b2870d1bd4c1e58152b64f0912ca6 /html.c | |
parent | 8b3471afb7adf38d31d7ee5220be0930960330aa (diff) |
Don't show polls as 'votable' from the public timeline.
Diffstat (limited to 'html.c')
-rw-r--r-- | html.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -1443,6 +1443,9 @@ xs_html *html_entry(snac *user, xs_dict *msg, int local, xs_html *poll = xs_html_tag("div", NULL); + if (local) + closed = 1; /* non-identified page; show as closed */ + else if (xs_dict_get(msg, "closed")) closed = 2; else |