diff options
Diffstat (limited to 'core/Command/App/Enable.php')
-rw-r--r-- | core/Command/App/Enable.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Command/App/Enable.php b/core/Command/App/Enable.php index 624b31521ad..ed29f2fed92 100644 --- a/core/Command/App/Enable.php +++ b/core/Command/App/Enable.php @@ -103,7 +103,7 @@ class Enable extends Command implements CompletionAwareInterface { /** @var Installer $installer */ $installer = \OC::$server->query(Installer::class); - if (false === $installer->isDownloaded($appId)) { + if ($installer->isDownloaded($appId) === false) { $installer->downloadApp($appId); } |