From 73e6be978233e21e2e7a4fdd6686f567cde2f3a7 Mon Sep 17 00:00:00 2001 From: Django Doucet Date: Thu, 14 Apr 2022 20:11:23 -0600 Subject: [PATCH] webfinger_extract remove extra param --- includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/functions.php b/includes/functions.php index 8bed133..7b5ea69 100644 --- a/includes/functions.php +++ b/includes/functions.php @@ -489,7 +489,7 @@ function transform_tags( $content ) { //@Mentions $mentions = null; - $webfinger_tags = \Activitypub\webfinger_extract( $content, true ); + $webfinger_tags = \Activitypub\webfinger_extract( $content ); if ( !empty( $webfinger_tags) ) { foreach ( $webfinger_tags[0] as $webfinger_tag ) { $ap_profile = \Activitypub\Rest\Webfinger::webfinger_lookup( $webfinger_tag );