diff options
| author | default <nobody@localhost> | 2025-01-22 05:59:15 +0100 |
|---|---|---|
| committer | default <nobody@localhost> | 2025-01-22 05:59:15 +0100 |
| commit | 070a9db3d72e0961dca45c7e65aa9fc4532aba73 (patch) | |
| tree | 7edf2c1a92743c8955cbb9510c0fff59253500dc /activitypub.c | |
| parent | 7cd62dd25b92780ef4e1ad42c1d2e9ba69c931e9 (diff) | |
Also accept 'Update' activities for 'Application' objects.
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 5517bf4..8fa29c9 100644 --- a/activitypub.c +++ b/activitypub.c @@ -2302,7 +2302,7 @@ int process_input_message(snac *snac, const xs_dict *msg, const xs_dict *req) } else if (strcmp(type, "Update") == 0) { /** **/ - if (xs_match(utype, "Person|Service")) { /** **/ + if (xs_match(utype, "Person|Service|Application")) { /** **/ actor_add(actor, xs_dict_get(msg, "object")); timeline_touch(snac); |