diff options
author | Christopher Ng <chrng8@gmail.com> | 2024-12-03 14:38:21 -0800 |
---|---|---|
committer | Christopher Ng <chrng8@gmail.com> | 2024-12-03 14:38:21 -0800 |
commit | e0b3ab5165118c6813123b9ab79ba8d2929a3a0c (patch) | |
tree | d41c6b6277c8af718956ddaab8043032433737e2 /core | |
parent | 0729e264f53c2d35e6ea7ec9126216056ff58dce (diff) | |
download | nextcloud-server-e0b3ab5165118c6813123b9ab79ba8d2929a3a0c.tar.gz nextcloud-server-e0b3ab5165118c6813123b9ab79ba8d2929a3a0c.zip |
fix: Correct wording when attempting to remove a disabled app
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'core')
-rw-r--r-- | core/Command/App/Remove.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/Command/App/Remove.php b/core/Command/App/Remove.php index ee60fcc0827..2ea10930427 100644 --- a/core/Command/App/Remove.php +++ b/core/Command/App/Remove.php @@ -49,9 +49,9 @@ class Remove extends Command implements CompletionAwareInterface { protected function execute(InputInterface $input, OutputInterface $output): int { $appId = $input->getArgument('app-id'); - // Check if the app is installed + // Check if the app is enabled if (!$this->manager->isInstalled($appId)) { - $output->writeln($appId . ' is not installed'); + $output->writeln($appId . ' is not enabled'); return 1; } |