diff options
author | default <nobody@localhost> | 2023-06-01 08:44:27 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2023-06-01 08:44:27 +0200 |
commit | d6aa3d3c55b2fa091ba9bb9ec0ea865f0ac73530 (patch) | |
tree | 80d89c04abacfadf6f916972c771d2dc7708e952 | |
parent | 513d81c694e6310900edb8ac05a7424acc3b2db6 (diff) |
More poll notify tweaks.
-rw-r--r-- | activitypub.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/activitypub.c b/activitypub.c index f53f442..4240486 100644 --- a/activitypub.c +++ b/activitypub.c @@ -520,8 +520,13 @@ void notify(snac *snac, const char *type, const char *utype, const char *actor, return; } - /* if it's a closed poll that is not ours and we didn't vote, drop it */ + /* updated poll? */ if (strcmp(type, "Update") == 0 && strcmp(type, "Question") == 0) { + /* if it's not closed, discard */ + if (xs_is_null(xs_dict_get(msg, "closed"))) + return; + + /* if it's not ours and we didn't vote, discard */ if (!xs_startswith(id, snac->actor) && !was_question_voted(snac, id)) return; } |