mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-14 17:45:04 +00:00
Send to collected inboxes AFTER sending to explicit recipients.
This commit is contained in:
parent
aaf6ff20c1
commit
45f490286a
1 changed files with 13 additions and 13 deletions
|
@ -1108,19 +1108,7 @@ void process_user_queue_item(snac *snac, xs_dict *q_item)
|
|||
|
||||
xs_set_init(&inboxes);
|
||||
|
||||
/* if it's public, send first to the collected inboxes */
|
||||
if (is_msg_public(snac, msg)) {
|
||||
xs *shibx = inbox_list();
|
||||
xs_str *v;
|
||||
|
||||
p = shibx;
|
||||
while (xs_list_iter(&p, &v)) {
|
||||
if (xs_set_add(&inboxes, v) == 1)
|
||||
enqueue_output(snac, msg, v, 0);
|
||||
}
|
||||
}
|
||||
|
||||
/* iterate now the recipients */
|
||||
/* iterate the recipients */
|
||||
p = rcpts;
|
||||
while (xs_list_iter(&p, &actor)) {
|
||||
xs *inbox = get_actor_inbox(snac, actor);
|
||||
|
@ -1134,6 +1122,18 @@ void process_user_queue_item(snac *snac, xs_dict *q_item)
|
|||
snac_log(snac, xs_fmt("cannot find inbox for %s", actor));
|
||||
}
|
||||
|
||||
/* if it's public, send to the collected inboxes */
|
||||
if (is_msg_public(snac, msg)) {
|
||||
xs *shibx = inbox_list();
|
||||
xs_str *inbox;
|
||||
|
||||
p = shibx;
|
||||
while (xs_list_iter(&p, &inbox)) {
|
||||
if (xs_set_add(&inboxes, inbox) == 1)
|
||||
enqueue_output(snac, msg, inbox, 0);
|
||||
}
|
||||
}
|
||||
|
||||
xs_set_free(&inboxes);
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue