aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorPytal <24800714+Pytal@users.noreply.github.com>2024-12-04 05:15:55 -0800
committerGitHub <noreply@github.com>2024-12-04 05:15:55 -0800
commit416c8ead40f02a7be8e9a9a8b963546d789a8848 (patch)
tree16862e03e7a4eee19a418dd4e9eb789fb189a820 /core
parentc54784c7051c8b031239f346c4588764f38162f7 (diff)
parente0b3ab5165118c6813123b9ab79ba8d2929a3a0c (diff)
downloadnextcloud-server-416c8ead40f02a7be8e9a9a8b963546d789a8848.tar.gz
nextcloud-server-416c8ead40f02a7be8e9a9a8b963546d789a8848.zip
Merge pull request #49637 from nextcloud/fix/app-remove-wording
fix: Correct wording when attempting to remove a disabled app
Diffstat (limited to 'core')
-rw-r--r--core/Command/App/Remove.php4
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;
}