mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 09:42:09 -04:00
Merge pull request #50438 from nextcloud/backport/49440/stable31
[stable31] fix(SetupChecks): Pass webfinger if the handler returns 400 too
This commit is contained in:
commit
fcb73d7217
1 changed files with 1 additions and 1 deletions
|
|
@ -45,7 +45,7 @@ class WellKnownUrls implements ISetupCheck {
|
|||
}
|
||||
|
||||
$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],
|
||||
|
|
|
|||
Loading…
Reference in a new issue