diff --git a/app/Util/Webfinger/WebfingerUrl.php b/app/Util/Webfinger/WebfingerUrl.php index ede4e4942..091d7ce14 100644 --- a/app/Util/Webfinger/WebfingerUrl.php +++ b/app/Util/Webfinger/WebfingerUrl.php @@ -11,7 +11,7 @@ class WebfingerUrl $url = Nickname::normalizeProfileUrl($url); $domain = $url['domain']; $username = $url['username']; - $path = "https://{$domain}/.well-known/webfinger?resource={$username}@{$domain}"; + $path = "https://{$domain}/.well-known/webfinger?resource=acct:{$username}@{$domain}"; return $path; }