From ce7924949f63c09f3ba0626738eb3688f05995a9 Mon Sep 17 00:00:00 2001 From: Pascal Terjan Date: Fri, 11 Nov 2022 14:35:52 +0000 Subject: Include packages with no maintainer when filtering on nobody --- autobuild/results.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autobuild/results.php b/autobuild/results.php index 9574f5d..f0b0264 100644 --- a/autobuild/results.php +++ b/autobuild/results.php @@ -369,10 +369,10 @@ foreach ($failure as $rpm => $error) { $attributes = get_package_attributes($packageid); if (isset($pkg_maintainers[$parsed['package']])) { $maintainer = $pkg_maintainers[$parsed['package']]; - $attributes .= " maintainer_$maintainer"; } else { $maintainer = "nobody"; } + $attributes .= " maintainer_$maintainer"; if ($attributes) { # Attributes are space separated words of the form "TYPE_SPECIFIER", e.g., "lang_php" # Types are currently build (use of a particular build system), -- cgit v1.2.1