diff options
| author | 2024-05-11 19:18:07 +0200 | |
|---|---|---|
| committer | 2024-05-11 19:18:07 +0200 | |
| commit | 0a11d70fbecd69e0c93000581b800ff434d42767 (patch) | |
| tree | ae77df1ea5686254090650af3fcfef64817aa28b /activitypub.c | |
| parent | In timeline_request(), call enqueue_actor_request on actor errors. (diff) | |
| parent | Show 'Event' object types as Notes. (diff) | |
| download | snac2-0a11d70fbecd69e0c93000581b800ff434d42767.tar.gz snac2-0a11d70fbecd69e0c93000581b800ff434d42767.tar.xz snac2-0a11d70fbecd69e0c93000581b800ff434d42767.zip | |
Fixed git conflict.
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 280ac87..dee127d 100644 --- a/activitypub.c +++ b/activitypub.c | |||
| @@ -355,7 +355,7 @@ int timeline_request(snac *snac, char **id, xs_str **wrk, int level) | |||
| 355 | type = "(null)"; | 355 | type = "(null)"; |
| 356 | } | 356 | } |
| 357 | 357 | ||
| 358 | if (xs_match(type, "Note|Page|Article|Video")) { | 358 | if (xs_match(type, POSTLIKE_OBJECT_TYPE)) { |
| 359 | if (content_check("filter_reject.txt", object)) | 359 | if (content_check("filter_reject.txt", object)) |
| 360 | snac_log(snac, xs_fmt("timeline_request rejected by content %s", nid)); | 360 | snac_log(snac, xs_fmt("timeline_request rejected by content %s", nid)); |
| 361 | else { | 361 | else { |