summaryrefslogtreecommitdiff
path: root/html.c
diff options
context:
space:
mode:
authorGravatar grunfink2025-11-09 09:42:55 +0100
committerGravatar grunfink2025-11-09 09:42:55 +0100
commitc40cd66f391940bca64cc1ff9df8ba8a46a2faf7 (patch)
tree206322cfd9237d6bc289dbf2bbaa8e265b7ca41e /html.c
parentUpdated RELEASE_NOTES. (diff)
downloadsnac2-c40cd66f391940bca64cc1ff9df8ba8a46a2faf7.tar.gz
snac2-c40cd66f391940bca64cc1ff9df8ba8a46a2faf7.tar.xz
snac2-c40cd66f391940bca64cc1ff9df8ba8a46a2faf7.zip
Also show unlisted posts in public timelines.
Diffstat (limited to '')
-rw-r--r--html.c2
1 files changed, 1 insertions, 1 deletions
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,
3236 continue; 3236 continue;
3237 } 3237 }
3238 /* hide non-public posts viewed from outside */ 3238 /* hide non-public posts viewed from outside */
3239 if (read_only && scope != SCOPE_PUBLIC){ 3239 if (read_only && (scope != SCOPE_PUBLIC && scope != SCOPE_UNLISTED)) {
3240 continue; 3240 continue;
3241 } 3241 }
3242 3242