Merge pull request #11417 from annando/fix-webfinger

Fix: Webfinger returned xml when json has been requested and vice versa
This commit is contained in:
Philipp 2022-04-18 10:00:19 +02:00 committed by GitHub
commit 9f58141dad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -101,7 +101,7 @@ class Xrd extends BaseModule
$avatar = ['type' => 'image/jpeg'];
}
if ($mode == Response::TYPE_JSON) {
if ($mode == Response::TYPE_XML) {
self::printXML($alias, DI::baseUrl()->get(), $user, $owner, $avatar);
} else {
self::printJSON($alias, DI::baseUrl()->get(), $owner, $avatar);