diff options
| author | grunfink <grunfink@comam.es> | 2025-11-09 09:42:55 +0100 |
|---|---|---|
| committer | grunfink <grunfink@comam.es> | 2025-11-09 09:42:55 +0100 |
| commit | c40cd66f391940bca64cc1ff9df8ba8a46a2faf7 (patch) | |
| tree | 206322cfd9237d6bc289dbf2bbaa8e265b7ca41e /html.c | |
| parent | 5dcdad764eaba590152dd033366c8af18388f4c8 (diff) | |
Also show unlisted posts in public timelines.
Diffstat (limited to 'html.c')
| -rw-r--r-- | html.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; } |