From 277c7ba10f4a83610f058b04e29da9f46121b377 Mon Sep 17 00:00:00 2001 From: Edward Ficklin Date: Tue, 14 Mar 2023 13:37:20 -0400 Subject: [PATCH] output fedi bio if set, default if not --- templates/author-json.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/author-json.php b/templates/author-json.php index 1003989..3b355b9 100644 --- a/templates/author-json.php +++ b/templates/author-json.php @@ -8,7 +8,7 @@ $json->id = \get_author_posts_url( $author_id ); $json->type = 'Person'; $json->name = \get_the_author_meta( 'display_name', $author_id ); $json->summary = \html_entity_decode( - \get_the_author_meta( 'description', $author_id ), + \Activitypub\get_author_description( $author_id ), \ENT_QUOTES, 'UTF-8' );