diff options
author | default <nobody@localhost> | 2024-08-16 18:35:08 +0200 |
---|---|---|
committer | default <nobody@localhost> | 2024-08-16 18:35:08 +0200 |
commit | e89d21b2474d27772f2f0a271b81fb361abf6df7 (patch) | |
tree | d1cec724193518b7fa59911b97c2bc085b9b3bb3 /activitypub.c | |
parent | ab93ca3f757962095e42a7254aa3fc8268f51082 (diff) |
Ignore 'Read' messages.
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 98256ae..68ad717 100644 --- a/activitypub.c +++ b/activitypub.c @@ -1721,7 +1721,7 @@ int process_input_message(snac *snac, const xs_dict *msg, const xs_dict *req) type = "Note"; /* reject uninteresting messages right now */ - if (xs_match(type, "Add|View|Reject")) { + if (xs_match(type, "Add|View|Reject|Read")) { srv_debug(0, xs_fmt("Ignored message of type '%s'", type)); return -1; } |