mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Fix v2 plugins (#14506)
inverted check caused all v2 plugins to not be shown.
This commit is contained in:
@ -122,7 +122,7 @@ class PluginManager
|
||||
return 'HOOK FAILED';
|
||||
}
|
||||
})->filter(function ($hook) {
|
||||
return $hook === 'HOOK FAILED';
|
||||
return $hook !== 'HOOK FAILED';
|
||||
});
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user