diff options
author | default <nobody@localhost> | 2022-12-15 11:06:31 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2022-12-15 11:06:31 +0100 |
commit | 6a7007e381a37521846ef94aea91d0b961a2abbb (patch) | |
tree | 9ba09e5ee02a6e4d2f62e7b6828379643b466419 | |
parent | a0459df6ea4f4639693459dfa01564d9aa6fd0ce (diff) |
Added support for Update + Note on input.
-rw-r--r-- | activitypub.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/activitypub.c b/activitypub.c index e003cfc..4309da9 100644 --- a/activitypub.c +++ b/activitypub.c @@ -934,6 +934,14 @@ int process_message(snac *snac, char *msg, char *req) snac_log(snac, xs_fmt("updated actor %s", actor)); } else + if (strcmp(utype, "Note") == 0) { + char *id = xs_dict_get(object, "id"); + + object_add_ow(id, object); + + snac_log(snac, xs_fmt("updated post %s", id)); + } + else snac_log(snac, xs_fmt("ignored 'Update' for object type '%s'", utype)); } else |