diff options
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; |