aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorJonas <jonas@freesources.org>2023-11-14 21:04:16 +0100
committerJonas <jonas@freesources.org>2023-11-14 21:04:27 +0100
commitaf4287d8a37ef216975df242faa81a22277d4306 (patch)
treef7d1ae98b842b366a65e59876191b859bea80bab /core
parent490f5cc4ec5add02c422ab52b49d4a1b644b80d6 (diff)
downloadnextcloud-server-af4287d8a37ef216975df242faa81a22277d4306.tar.gz
nextcloud-server-af4287d8a37ef216975df242faa81a22277d4306.zip
Update core/Command/Background/ListCommand.php
Co-authored-by: Côme Chilliet <91878298+come-nc@users.noreply.github.com> Signed-off-by: Jonas <jonas@freesources.org>
Diffstat (limited to 'core')
-rw-r--r--core/Command/Background/ListCommand.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Command/Background/ListCommand.php b/core/Command/Background/ListCommand.php
index 4d5329ec22f..ef5b478a197 100644
--- a/core/Command/Background/ListCommand.php
+++ b/core/Command/Background/ListCommand.php
@@ -70,7 +70,7 @@ class ListCommand extends Base {
$jobsInfo = $this->formatJobs($this->jobList->getJobsIterator($input->getOption('class'), $limit, (int)$input->getOption('offset')));
$this->writeTableInOutputFormat($input, $output, $jobsInfo);
if ($input->getOption('output') === self::OUTPUT_FORMAT_PLAIN && count($jobsInfo) >= $limit) {
- $output->writeln("\n<comment>Output is currently limited to first " . $limit . " jobs. Specify `-l, --limit[=LIMIT]` to override.</comment>");
+ $output->writeln("\n<comment>Output is currently limited to " . $limit . " jobs. Specify `-l, --limit[=LIMIT]` to override.</comment>");
}
return 0;
}