diff options
author | default <nobody@localhost> | 2022-10-19 21:21:34 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2022-10-19 21:21:34 +0200 |
commit | 76b36362cec11bd7998ffb8600d42533be8e9611 (patch) | |
tree | 56c572da062c8850fe44fa3dae3021b278e4823e | |
parent | dbe68c16dfa3a6d3fdbb5b026b103ec10bbbd037 (diff) |
Don't read this actor with actor_get().
-rw-r--r-- | html.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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; |