From 262de20aa8adf097454cdf4c3c36d84a8931c43b Mon Sep 17 00:00:00 2001 From: default Date: Thu, 15 Jun 2023 17:24:44 +0200 Subject: Fixed voting / replying confusion. --- data.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'data.c') diff --git a/data.c b/data.c index b943995..ad581ee 100644 --- a/data.c +++ b/data.c @@ -2009,7 +2009,8 @@ int was_question_voted(snac *user, const char *id) xs *obj = NULL; if (valid_status(object_get_by_md5(md5, &obj))) { - if (strcmp(xs_dict_get(obj, "attributedTo"), user->actor) == 0) { + if (strcmp(xs_dict_get(obj, "attributedTo"), user->actor) == 0 && + !xs_is_null(xs_dict_get(obj, "name"))) { voted = 1; break; } -- cgit v1.2.3