summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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,
if (is_hidden(&snac1, xs_dict_get(msg, "id")))
continue;
+ /* discard poll votes (they have a name) */
+ if (!xs_is_null(xs_dict_get(msg, "name")))
+ continue;
+
/* convert the Note into a Mastodon status */
xs *st = mastoapi_status(&snac1, msg);