logo

ap-client

CLI-based client / toolbox for ActivityPub Client-to-Servergit clone https://hacktivis.me/git/ap-client.git
commit: 26b49a7a5b578d4fb5a02b7c7c62a8d6bb599a33
parent 9dd221525f3b9b2273e6bb4a2087b007315cae8a
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Thu,  5 May 2022 04:47:59 +0200

ap-represent: Add peertube's subtitleLanguage

Diffstat:

Map-represent.pl2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ap-represent.pl b/ap-represent.pl @@ -29,7 +29,7 @@ sub print_object { printf ' ā€œ%sā€', $object->{"name"} if $object->{"name"}; printf ' @%s', $object->{"preferredUsername"} if $object->{"preferredUsername"}; printf ' āš ' if ($object->{"sensitive"} eq JSON->true); - foreach("url", "context", "inbox", "outbox", "prev", "next", "published", "updated", "summary", "content", "bcc", "bto", "to", "cc", "object", "attachment", "tag", "orderedItems", "mediaType") { + foreach("url", "subtitleLanguage", "context", "inbox", "outbox", "prev", "next", "published", "updated", "summary", "content", "bcc", "bto", "to", "cc", "object", "attachment", "tag", "orderedItems", "mediaType") { print_object_key($indent, $object, $_); } }