diff options
| author | grunfink <grunfink@comam.es> | 2025-11-15 05:28:23 +0100 |
|---|---|---|
| committer | grunfink <grunfink@comam.es> | 2025-11-15 05:28:23 +0100 |
| commit | bde074762685a0efe75067c783a078a22949a405 (patch) | |
| tree | c08a4a8917a1f625d4cb06a0861785efc7ddcd20 /html.c | |
| parent | 2a7bb3d52ed393c200c4a6cace26abcb41ebbd11 (diff) | |
Request unfound actors from the notifications page.
Diffstat (limited to 'html.c')
| -rw-r--r-- | html.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -3578,9 +3578,13 @@ xs_str *html_notifications(snac *user, int skip, int show) if (valid_status(actor_get(actor_id, &actor))) a_name = actor_name(actor, proxy); - else + else { a_name = xs_dup(actor_id); + /* actor not here: request it */ + enqueue_actor_refresh(user, actor_id, 0); + } + xs *label_sanitized = sanitize(type); const char *label = label_sanitized; |