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 519c67f commit 7b11a9bCopy full SHA for 7b11a9b
lib/Service/IdentifyMethod/Account.php
@@ -133,7 +133,7 @@ private function isEnabledByDefault(): bool {
133
}
134
135
// Remove not enabled
136
- $config = array_filter($config, fn ($i) => $i['enabled']);
+ $config = array_filter($config, fn ($i) => isset($i['enabled']) && $i['enabled'] ? true : false);
137
138
$current = array_reduce($config, function ($carry, $config) {
139
if ($config['name'] === $this->name) {
0 commit comments