diff options
| author | 2026-01-06 18:53:38 +0100 | |
|---|---|---|
| committer | 2026-01-06 18:53:38 +0100 | |
| commit | a01e4b148fd32a015167478171443047507c168d (patch) | |
| tree | 1ef25e43c724caa36fecf05a7a52e763f0297334 | |
| parent | Version 2.87 RELEASED. (diff) | |
| download | snac2-a01e4b148fd32a015167478171443047507c168d.tar.gz snac2-a01e4b148fd32a015167478171443047507c168d.tar.xz snac2-a01e4b148fd32a015167478171443047507c168d.zip | |
Fixed crash.
| -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, | |||
| 2461 | const char *actor = xs_dict_get(m, "actor"); | 2461 | const char *actor = xs_dict_get(m, "actor"); |
| 2462 | const xs_list *contentl = xs_dict_get(sfrl, content); | 2462 | const xs_list *contentl = xs_dict_get(sfrl, content); |
| 2463 | 2463 | ||
| 2464 | if (is_muted(user, actor) || is_instance_blocked(actor)) | 2464 | if ((user && is_muted(user, actor)) || is_instance_blocked(actor)) |
| 2465 | continue; | 2465 | continue; |
| 2466 | 2466 | ||
| 2467 | xs *actors = xs_list_new(); | 2467 | xs *actors = xs_list_new(); |