sforkowany z mirror/social
Merge pull request #169 from nextcloud/bugfix/noid/wellknown-check
Run well-known check after setupalpha1
commit
fd40dc73a6
|
@ -148,9 +148,6 @@ class NavigationController extends Controller {
|
|||
]
|
||||
];
|
||||
|
||||
$checks = $this->checkService->checkDefault();
|
||||
$data['serverData']['checks'] = $checks;
|
||||
|
||||
try {
|
||||
$data['serverData']['cloudAddress'] = $this->configService->getCloudAddress();
|
||||
} catch (SocialAppConfigException $e) {
|
||||
|
@ -171,6 +168,11 @@ class NavigationController extends Controller {
|
|||
}
|
||||
}
|
||||
|
||||
if ($data['serverData']['isAdmin']) {
|
||||
$checks = $this->checkService->checkDefault();
|
||||
$data['serverData']['checks'] = $checks;
|
||||
}
|
||||
|
||||
/*
|
||||
* Create social user account if it doesn't exist yet
|
||||
*/
|
||||
|
|
Ładowanie…
Reference in New Issue