Skip to content

Commit

Permalink
Merge pull request #33482 from nextcloud/bugfix/app-version-disabled
Browse files Browse the repository at this point in the history
Show version from appinfo on occ app:list
  • Loading branch information
juliusknorr authored Nov 13, 2022
2 parents 7e229aa + 1da6c21 commit 87105a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/Command/App/ListApps.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int

sort($disabledApps);
foreach ($disabledApps as $app) {
$apps['disabled'][$app] = $versions[$app] ?? null;
$apps['disabled'][$app] = $this->manager->getAppVersion($app) . (isset($versions[$app]) ? ' (installed ' . $versions[$app] . ')' : '');
}

$this->writeAppList($input, $output, $apps);
Expand Down

0 comments on commit 87105a2

Please sign in to comment.