diff options
Diffstat (limited to '')
| -rw-r--r-- | html.c | 7 |
1 files changed, 6 insertions, 1 deletions
| @@ -2008,8 +2008,13 @@ xs_html *html_entry(snac *user, xs_dict *msg, int read_only, | |||
| 2008 | } | 2008 | } |
| 2009 | 2009 | ||
| 2010 | if ((user == NULL || strcmp(actor, user->actor) != 0) | 2010 | if ((user == NULL || strcmp(actor, user->actor) != 0) |
| 2011 | && !valid_status(actor_get(actor, NULL))) | 2011 | && !valid_status(actor_get(actor, NULL))) { |
| 2012 | |||
| 2013 | if (user) | ||
| 2014 | enqueue_actor_refresh(user, actor, 0); | ||
| 2015 | |||
| 2012 | return NULL; | 2016 | return NULL; |
| 2017 | } | ||
| 2013 | 2018 | ||
| 2014 | /** html_entry top tag **/ | 2019 | /** html_entry top tag **/ |
| 2015 | xs_html *entry_top = xs_html_tag("div", NULL); | 2020 | xs_html *entry_top = xs_html_tag("div", NULL); |