Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix(SetupChecks): Pass webfinger if a handler is there
Signed-off-by: Josh <[email protected]>
  • Loading branch information
joshtrichards authored and AndyScherzinger committed Jan 26, 2025
commit b452dc0697b949cf78ff499749e48e21c4ddfec6
2 changes: 1 addition & 1 deletion apps/settings/lib/SetupChecks/WellKnownUrls.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function run(): SetupResult {
}

$urls = [
['get', '/.well-known/webfinger', [200, 404], true],
['get', '/.well-known/webfinger', [200, 400, 404], true], // 400 indicates a handler is installed but (correctly) failed because we didn't specify a resource
['get', '/.well-known/nodeinfo', [200, 404], true],
['propfind', '/.well-known/caldav', [207], false],
['propfind', '/.well-known/carddav', [207], false],
Expand Down
Loading