Don't skip orphan private posts that are for us.

This commit is contained in:
default 2024-04-17 06:45:19 +02:00
parent 86f1d74214
commit 2e31253ba8

5
html.c
View file

@ -2055,10 +2055,15 @@ xs_str *html_timeline(snac *user, const xs_list *list, int read_only,
char *irt = xs_dict_get(msg, "inReplyTo");
if (!xs_is_null(irt) && !object_here(irt)) {
/* is it for me? */
xs_list *to = xs_dict_get(msg, "to");
if (xs_type(to) == XSTYPE_LIST && xs_list_in(to, user->actor) == -1) {
snac_debug(user, 1, xs_fmt("skipping non-public reply to an unknown post %s", v));
continue;
}
}
}
xs_html *entry = html_entry(user, msg, read_only, 0, v, user ? 0 : 1);