diff --git a/app/Services/PluginManager.php b/app/Services/PluginManager.php index f8aef4be..0f0a59b2 100644 --- a/app/Services/PluginManager.php +++ b/app/Services/PluginManager.php @@ -107,7 +107,7 @@ class PluginManager $plugin = new Plugin($directory, $manifest); $plugins->put($name, $plugin); - if ($this->getUnsatisfied($plugin)->isNotEmpty()) { + if ($this->getUnsatisfied($plugin)->isNotEmpty() || $this->getConflicts($plugin)->isNotEmpty()) { $this->disable($plugin); } if ($this->enabled->has($name)) {