From c40cd66f391940bca64cc1ff9df8ba8a46a2faf7 Mon Sep 17 00:00:00 2001 From: grunfink Date: Sun, 9 Nov 2025 09:42:55 +0100 Subject: Also show unlisted posts in public timelines. --- html.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'html.c') diff --git a/html.c b/html.c index 23724b2..ec7d7bf 100644 --- a/html.c +++ b/html.c @@ -3236,7 +3236,7 @@ xs_str *html_timeline(snac *user, const xs_list *list, int read_only, continue; } /* hide non-public posts viewed from outside */ - if (read_only && scope != SCOPE_PUBLIC){ + if (read_only && (scope != SCOPE_PUBLIC && scope != SCOPE_UNLISTED)) { continue; } -- cgit v1.2.3