Fix v2 plugins (#14506)

inverted check caused all v2 plugins to not be shown.
This commit is contained in:
Tony Murray
2022-10-24 21:48:13 -05:00
committed by GitHub
parent c91691bfa6
commit bfc9c5f846

View File

@ -122,7 +122,7 @@ class PluginManager
return 'HOOK FAILED';
}
})->filter(function ($hook) {
return $hook === 'HOOK FAILED';
return $hook !== 'HOOK FAILED';
});
}