fix args type

This commit is contained in:
Simon Vieille 2020-09-23 12:51:55 +02:00
commit 9d2eab42d8
Signed by untrusted user: deblan
GPG key ID: 03383D15A1D31745
3 changed files with 5 additions and 5 deletions

View file

@ -116,7 +116,7 @@ class JsController extends Controller
return [
'opener-position' => $this->config->getAppValue('opener-position', 'before'),
'opener-hover' => $this->config->getAppValueBool('opener-hover', '0'),
'external-sites-in-top-menu' => $this->config->getAppValueBool('external-sites-in-top-menu', 0),
'external-sites-in-top-menu' => $this->config->getAppValueBool('external-sites-in-top-menu', '0'),
'force-light-icon' => $this->config->getAppValueBool('force-light-icon', '0'),
'hide-when-no-apps' => $this->config->getAppValueBool('hide-when-no-apps', '0'),
'loader-enabled' => $this->config->getAppValueBool('loader-enabled', '1'),