Skip to content
Draft

5.x.x #391

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion documentation/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<div align="center">
<img src="https://raw.githubusercontent.com/lbr38/repomanager/refs/heads/devel/images/readme/github-readme-white.png#gh-dark-mode-only" align="top" width=30%>
</div>

<br><br>

**Repomanager** is a web mirroring tool for `rpm` and `deb` package repositories.
Expand Down
2 changes: 1 addition & 1 deletion www/controllers/Host/Listing.php
Original file line number Diff line number Diff line change
Expand Up @@ -230,7 +230,7 @@ public function getOutdated(): array
$available = $hostPackageController->getAvailable();

// If available updates count is greater than the maximum number of available updates allowed in settings, the host is outdated
if (count($available) > $settings['pkgs_count_considered_outdated']) {
if (count($available) >= $settings['pkgs_count_considered_outdated']) {
$data[] = [
'Id' => $host['Id'],
'Hostname' => $host['Hostname'],
Expand Down
Loading