summaryrefslogtreecommitdiff
path: root/html.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2023-05-03 07:57:10 +0200
committerdefault <nobody@localhost>2023-05-03 07:57:10 +0200
commit0bd609f5be9aa24bced629273ff2428058388ac3 (patch)
treeddc5e93c427935ec5b4d4170ef480c20d118512b /html.c
parentbe5f08e6c3d605fb2beb1fdd1c2f10818b1e1812 (diff)
Fixed missing notifications in certain circunstancies.
Diffstat (limited to 'html.c')
-rw-r--r--html.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/html.c b/html.c
index 5f57262..9d6fbc6 100644
--- a/html.c
+++ b/html.c
@@ -1226,7 +1226,7 @@ xs_str *html_notifications(snac *snac)
const char *actor_id = xs_dict_get(noti, "actor");
xs *actor = NULL;
- if (!valid_status(object_get(actor_id, &actor)))
+ if (!valid_status(actor_get(snac, actor_id, &actor)))
continue;
xs *a_name = actor_name(actor);