mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-14 09:35:04 +00:00
Fixed 'strict_public_timelines' being applied to the private timeline.
This commit is contained in:
parent
a6bf1ee0d0
commit
3e9222c049
1 changed files with 1 additions and 1 deletions
2
html.c
2
html.c
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue