summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar default2023-05-24 14:12:21 +0200
committerGravatar default2023-05-24 14:12:21 +0200
commitbf6fcee21c708d299895713ab775fcc666a8124d (patch)
tree466ba201f0f6dcde4688ca46f26a96b8a4c01cde
parentTweaked log message. (diff)
downloadpenes-snac2-bf6fcee21c708d299895713ab775fcc666a8124d.tar.gz
penes-snac2-bf6fcee21c708d299895713ab775fcc666a8124d.tar.xz
penes-snac2-bf6fcee21c708d299895713ab775fcc666a8124d.zip
In mastoapi, don't show poll votes in timelines.
-rw-r--r--mastoapi.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/mastoapi.c b/mastoapi.c
index 104c7f1..6403e06 100644
--- a/mastoapi.c
+++ b/mastoapi.c
@@ -1157,6 +1157,10 @@ int mastoapi_get_handler(const xs_dict *req, const char *q_path,
1157 if (is_hidden(&snac1, xs_dict_get(msg, "id"))) 1157 if (is_hidden(&snac1, xs_dict_get(msg, "id")))
1158 continue; 1158 continue;
1159 1159
1160 /* discard poll votes (they have a name) */
1161 if (!xs_is_null(xs_dict_get(msg, "name")))
1162 continue;
1163
1160 /* convert the Note into a Mastodon status */ 1164 /* convert the Note into a Mastodon status */
1161 xs *st = mastoapi_status(&snac1, msg); 1165 xs *st = mastoapi_status(&snac1, msg);
1162 1166