aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--html.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/html.c b/html.c
index b482d10..7d748f9 100644
--- a/html.c
+++ b/html.c
@@ -2008,8 +2008,13 @@ xs_html *html_entry(snac *user, xs_dict *msg, int read_only,
}
if ((user == NULL || strcmp(actor, user->actor) != 0)
- && !valid_status(actor_get(actor, NULL)))
+ && !valid_status(actor_get(actor, NULL))) {
+
+ if (user)
+ enqueue_actor_refresh(user, actor, 0);
+
return NULL;
+ }
/** html_entry top tag **/
xs_html *entry_top = xs_html_tag("div", NULL);