mirror of
https://codeberg.org/grunfink/snac2.git
synced 2024-11-15 01:55:03 +00:00
Added some experimental code to hide follower-only failed replies.
This commit is contained in:
parent
72c2f25c85
commit
43e3a0fdda
1 changed files with 10 additions and 0 deletions
10
html.c
10
html.c
|
@ -1915,6 +1915,16 @@ xs_str *html_timeline(snac *user, const xs_list *list, int local,
|
||||||
if (user == NULL && is_msg_from_private_user(msg))
|
if (user == NULL && is_msg_from_private_user(msg))
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
|
/* is this message a non-public reply? */
|
||||||
|
if (user != NULL && !is_msg_public(msg)) {
|
||||||
|
char *irt = xs_dict_get(msg, "inReplyTo");
|
||||||
|
|
||||||
|
if (!xs_is_null(irt) && !object_here(irt)) {
|
||||||
|
snac_debug(user, 1, xs_fmt("skipping non-public reply to an unknown post %s", v));
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
xs_html *entry = html_entry(user, msg, local, 0, v, user ? 0 : 1);
|
xs_html *entry = html_entry(user, msg, local, 0, v, user ? 0 : 1);
|
||||||
|
|
||||||
if (entry != NULL)
|
if (entry != NULL)
|
||||||
|
|
Loading…
Reference in a new issue