snac2

Fork of https://codeberg.org/grunfink/snac2
git clone https://git.inz.fi/snac2
Log | Files | Refs | README | LICENSE

commit 76b36362cec11bd7998ffb8600d42533be8e9611
parent dbe68c16dfa3a6d3fdbb5b026b103ec10bbbd037
Author: default <nobody@localhost>
Date:   Wed, 19 Oct 2022 21:21:34 +0200

Don't read this actor with actor_get().

Diffstat:
Mhtml.c | 3+++
1 file changed, 3 insertions(+), 0 deletions(-)

diff --git a/html.c b/html.c @@ -468,6 +468,9 @@ d_char *html_entry(snac *snac, d_char *os, char *msg, xs_set *seen, int local, i if (is_muted(snac, actor)) return os; + if (strcmp(actor, snac->actor) == 0) + actor_o = msg_actor(snac); + else if (!valid_status(actor_get(snac, actor, &actor_o))) return os;