We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
application/ld+json
1 parent fadd198 commit 6265f66Copy full SHA for 6265f66
includes/class-webfinger.php
@@ -53,7 +53,10 @@ public static function resolve( $uri ) {
53
foreach ( $data['links'] as $link ) {
54
if (
55
'self' === $link['rel'] &&
56
- 'application/activity+json' === $link['type']
+ (
57
+ 'application/activity+json' === $link['type'] ||
58
+ 'application/ld+json; profile="https://www.w3.org/ns/activitystreams"' === $link['type']
59
+ )
60
) {
61
return $link['href'];
62
}
0 commit comments