diff options
| author | grunfink <grunfink@comam.es> | 2026-01-06 18:53:38 +0100 |
|---|---|---|
| committer | grunfink <grunfink@comam.es> | 2026-01-06 18:53:38 +0100 |
| commit | a01e4b148fd32a015167478171443047507c168d (patch) | |
| tree | 1ef25e43c724caa36fecf05a7a52e763f0297334 /html.c | |
| parent | c2b050cf5389e25bb3d149452ee432116b9cc1cd (diff) | |
Fixed crash.
Diffstat (limited to 'html.c')
| -rw-r--r-- | html.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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(); |