aboutsummaryrefslogtreecommitdiff
path: root/html.c
diff options
context:
space:
mode:
authorgrunfink <grunfink@comam.es>2026-07-30 10:21:29 +0200
committergrunfink <grunfink@comam.es>2026-07-30 10:21:29 +0200
commit86852a0c2d95bbee5105294dff1f1998f93dbfed (patch)
treee133db326c8ed5509a4a0ddd8b5d1ff4e7d9f7ff /html.c
parent5cffab6a29e6242092c9c66b34df728e753f08b3 (diff)
Don't skip unlisted replies to unknown posts.
Diffstat (limited to 'html.c')
-rw-r--r--html.c2
1 files changed, 1 insertions, 1 deletions
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);