diff options
| author | grunfink <grunfink@comam.es> | 2025-10-11 18:47:52 +0200 |
|---|---|---|
| committer | grunfink <grunfink@comam.es> | 2025-10-11 18:47:52 +0200 |
| commit | fc62cb00899b0b4567b9c3bd8b0c38410c562e62 (patch) | |
| tree | 1168371ab3ae46a92cf8a826f76645234ad8e706 | |
| parent | 885ee3f5b9b9b9c1bac46bfd72af613230067e08 (diff) | |
Fixed recipient_list() for mentioned accounts.
| -rw-r--r-- | activitypub.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/activitypub.c b/activitypub.c index 0a60d0d..c433788 100644 --- a/activitypub.c +++ b/activitypub.c @@ -584,6 +584,8 @@ xs_list *recipient_list(snac *snac, const xs_dict *msg, int expand_public) while (xs_list_iter(&p, &actor)) xs_set_add(&rcpts, actor); } + else + xs_set_add(&rcpts, v); } else xs_set_add(&rcpts, v); |