From a01e4b148fd32a015167478171443047507c168d Mon Sep 17 00:00:00 2001 From: grunfink Date: Tue, 6 Jan 2026 18:53:38 +0100 Subject: Fixed crash. --- html.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/html.c b/html.c index d5a59d8..4299396 100644 --- a/html.c +++ b/html.c @@ -2461,7 +2461,7 @@ xs_html *html_entry(snac *user, xs_dict *msg, int read_only, const char *actor = xs_dict_get(m, "actor"); const xs_list *contentl = xs_dict_get(sfrl, content); - if (is_muted(user, actor) || is_instance_blocked(actor)) + if ((user && is_muted(user, actor)) || is_instance_blocked(actor)) continue; xs *actors = xs_list_new(); -- cgit v1.2.3