summaryrefslogtreecommitdiffstats
path: root/lib/Controller/ConfigController.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Controller/ConfigController.php')
-rw-r--r--lib/Controller/ConfigController.php11
1 files changed, 10 insertions, 1 deletions
diff --git a/lib/Controller/ConfigController.php b/lib/Controller/ConfigController.php
index 319a9344..3009f1d1 100644
--- a/lib/Controller/ConfigController.php
+++ b/lib/Controller/ConfigController.php
@@ -113,13 +113,22 @@ class ConfigController extends Controller {
* @return DataResponse
*/
public function remote(string $account): DataResponse {
+ if ($account === '' || $this->configService->getSystemValue('social.tests') === '') {
+ return $this->local();
+ }
+
try {
$this->configService->getCloudUrl();
} catch (SocialAppConfigException $e) {
return $this->success(['error' => 'error on my side: my own Social App is not configured']);
}
- $tests = new SimpleDataStore(['account' => $account]);
+ $tests = new SimpleDataStore(
+ [
+ 'account' => $account,
+ 'endpoint' => $this->configService->getSystemValue('social.tests')
+ ]
+ );
try {
$this->testService->testWebfinger($tests);
} catch (Exception $e) {