diff options
author | default <nobody@localhost> | 2022-09-25 22:57:18 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2022-09-25 22:57:18 +0200 |
commit | d86f6ee27f63b120fce952e0905a8c627861ba81 (patch) | |
tree | 30b2eeb88f5f2838cc8ebc0719c74c11cbf4b3aa /activitypub.c | |
parent | 424557fcb8a70df8ab84cdab270057259664aa8f (diff) |
Backported from xs.
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 39fcdfe..8a02d7e 100644 --- a/activitypub.c +++ b/activitypub.c @@ -256,7 +256,7 @@ void process_message(snac *snac, char *msg, char *req) char *object, *utype; object = xs_dict_get(msg, "object"); - if (object != NULL && xs_type(object) == XSTYPE_SOD) + if (object != NULL && xs_type(object) == XSTYPE_DICT) utype = xs_dict_get(object, "type"); else utype = "(null)"; |