diff options
| author | default <nobody@localhost> | 2024-11-07 21:17:38 +0100 |
|---|---|---|
| committer | default <nobody@localhost> | 2024-11-07 21:17:38 +0100 |
| commit | 3e9222c0491ab6681fb0784413d3d923f032462f (patch) | |
| tree | c5bff5dd387cd788b0a2528b18d65ed3352d159d | |
| parent | a6bf1ee0d0e238cb13d916c019bc231986d44401 (diff) | |
Fixed 'strict_public_timelines' being applied to the private timeline.
| -rw-r--r-- | html.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2198,7 +2198,7 @@ xs_str *html_timeline(snac *user, const xs_list *list, int read_only, xs_list *p = (xs_list *)list; const char *v; double t = ftime(); - int hide_children = xs_is_true(xs_dict_get(srv_config, "strict_public_timelines")); + int hide_children = xs_is_true(xs_dict_get(srv_config, "strict_public_timelines")) && read_only; xs *desc = NULL; xs *alternate = NULL; |