summaryrefslogtreecommitdiffstats
path: root/lib/Controller
diff options
context:
space:
mode:
authorMaxence Lange <maxence@artificial-owl.com>2019-07-11 18:26:34 -0100
committerMaxence Lange <maxence@artificial-owl.com>2019-07-11 18:26:34 -0100
commit7fccfc23257b6103e999ec90a8120b8f5cc69521 (patch)
tree1d7105409cf7e02d24f11b41f8c4969f8dac5f38 /lib/Controller
parenta7f7c0368d8cda62bc3e587e1bc00b277f525d2c (diff)
fixing some conversion
Signed-off-by: Maxence Lange <maxence@artificial-owl.com>
Diffstat (limited to 'lib/Controller')
-rw-r--r--lib/Controller/LocalController.php4
-rw-r--r--lib/Controller/NavigationController.php6
2 files changed, 9 insertions, 1 deletions
diff --git a/lib/Controller/LocalController.php b/lib/Controller/LocalController.php
index 8ba30850..0d2a8ca9 100644
--- a/lib/Controller/LocalController.php
+++ b/lib/Controller/LocalController.php
@@ -804,7 +804,9 @@ class LocalController extends Controller {
$this->cacheActorService->setViewer($this->viewer);
} catch (Exception $e) {
if ($exception) {
- throw new AccountDoesNotExistException();
+ throw new AccountDoesNotExistException(
+ 'unable to initViewer - ' . get_class($e) . ' - ' . $e->getMessage()
+ );
}
}
}
diff --git a/lib/Controller/NavigationController.php b/lib/Controller/NavigationController.php
index 1bb8a941..c4438e5a 100644
--- a/lib/Controller/NavigationController.php
+++ b/lib/Controller/NavigationController.php
@@ -165,6 +165,12 @@ class NavigationController extends Controller {
}
}
+ try {
+ $this->configService->getSocialUrl();
+ } catch (SocialAppConfigException $e) {
+ $this->configService->setSocialUrl('');
+ }
+
if ($data['serverData']['isAdmin']) {
$checks = $this->checkService->checkDefault();
$data['serverData']['checks'] = $checks;