summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar default2024-01-18 23:26:41 +0100
committerGravatar default2024-01-18 23:26:41 +0100
commit5208f9d625364293e84c5cb27045ba3f3d6914cf (patch)
treecebafc49d21457f14ab47e3f94f865888e625377
parentDo a very basic conversion of content if it's markdown. (diff)
downloadsnac2-5208f9d625364293e84c5cb27045ba3f3d6914cf.tar.gz
snac2-5208f9d625364293e84c5cb27045ba3f3d6914cf.tar.xz
snac2-5208f9d625364293e84c5cb27045ba3f3d6914cf.zip
Also process Video in timeline_request().
-rw-r--r--activitypub.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/activitypub.c b/activitypub.c
index 33ddd0f..03c2ddf 100644
--- a/activitypub.c
+++ b/activitypub.c
@@ -230,7 +230,7 @@ int timeline_request(snac *snac, char **id, xs_str **wrk, int level)
230 type = "(null)"; 230 type = "(null)";
231 } 231 }
232 232
233 if (xs_match(type, "Note|Page|Article")) { 233 if (xs_match(type, "Note|Page|Article|Video")) {
234 const char *actor = get_atto(object); 234 const char *actor = get_atto(object);
235 235
236 /* request (and drop) the actor for this entry */ 236 /* request (and drop) the actor for this entry */