From 86852a0c2d95bbee5105294dff1f1998f93dbfed Mon Sep 17 00:00:00 2001 From: grunfink Date: Thu, 30 Jul 2026 10:21:29 +0200 Subject: Don't skip unlisted replies to unknown posts. --- html.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'html.c') diff --git a/html.c b/html.c index bc4dd63..48aecde 100644 --- a/html.c +++ b/html.c @@ -3700,7 +3700,7 @@ xs_str *html_timeline(snac *user, const xs_list *list, int read_only, continue; const int scope = get_msg_visibility(msg); - if (user != NULL && scope != SCOPE_PUBLIC && !is_msg_mine(user, xs_dict_get(msg, "id"))) { + if (user != NULL && scope != SCOPE_PUBLIC && scope != SCOPE_UNLISTED && !is_msg_mine(user, xs_dict_get(msg, "id"))) { /* is this message a non-public reply? */ const char *irt = get_in_reply_to(msg); -- cgit