commit ea0c128cf0067946cab47bdce09df791be8038f5
parent 89a8c2e0cc4fcd1f9450dfeb13bf5d83730c52ae
Author: default <nobody@localhost>
Date: Mon, 23 Dec 2024 10:31:37 +0100
Accept 'Audio' as a valid entry type.
Also, done a tweak to read attributedTo fields that are a JSON object,
with the id in the "id" field (returned by bandwagon.fm).
Diffstat:
2 files changed, 6 insertions(+), 1 deletion(-)
diff --git a/activitypub.c b/activitypub.c
@@ -178,6 +178,11 @@ const char *get_atto(const xs_dict *msg)
}
}
}
+ else
+ if (xs_type(actor) == XSTYPE_DICT) {
+ /* bandwagon.fm returns this */
+ actor = xs_dict_get(actor, "id");
+ }
return actor;
}
diff --git a/snac.h b/snac.h
@@ -32,7 +32,7 @@ extern int dbglevel;
#define L(s) (s)
-#define POSTLIKE_OBJECT_TYPE "Note|Question|Page|Article|Video|Event"
+#define POSTLIKE_OBJECT_TYPE "Note|Question|Page|Article|Video|Audio|Event"
int mkdirx(const char *pathname);