We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d490ea8 commit 3b71f28Copy full SHA for 3b71f28
lib/Service/IdentifyMethod/Account.php
@@ -149,7 +149,7 @@ private function isEnabledByDefault(): bool {
149
}
150
151
// Remove not enabled
152
- $config = array_filter($config, fn ($i) => $i['enabled']);
+ $config = array_filter($config, fn ($i) => isset($i['enabled']) && $i['enabled'] ? true : false);
153
154
$current = array_reduce($config, function ($carry, $config) {
155
if ($config['name'] === $this->name) {
0 commit comments