mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-09 19:50:26 +03:00
More poll notify tweaks.
This commit is contained in:
parent
513d81c694
commit
d6aa3d3c55
@ -520,8 +520,13 @@ void notify(snac *snac, const char *type, const char *utype, const char *actor,
|
|||||||
return;
|
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 (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))
|
if (!xs_startswith(id, snac->actor) && !was_question_voted(snac, id))
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user