diff options
author | default <nobody@localhost> | 2022-10-21 10:37:08 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2022-10-21 10:37:08 +0200 |
commit | 6ffbb3a4fc108ea5c70cc3d002e2a93d00432f46 (patch) | |
tree | 71fb7ab2887c5c2205ae956ed936b7aff8c394f5 /activitypub.c | |
parent | d210674569d203650f71bccdb2f718731388dcf1 (diff) |
Fixed typo.
Diffstat (limited to 'activitypub.c')
-rw-r--r-- | activitypub.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activitypub.c b/activitypub.c index f12aa47..24bf04e 100644 --- a/activitypub.c +++ b/activitypub.c @@ -650,7 +650,7 @@ void notify(snac *snac, char *type, char *utype, char *actor, char *msg) return; if (strcmp(type, "Like") == 0 || strcmp(type, "Announce") == 0) { - object = xs_str_get(msg, "object"); + object = xs_dict_get(msg, "object"); if (xs_is_null(object)) return; |