diff options
author | Pascal Terjan <pterjan@mageia.org> | 2022-11-11 14:35:52 +0000 |
---|---|---|
committer | Pascal Terjan <pterjan@mageia.org> | 2022-11-11 14:35:52 +0000 |
commit | ce7924949f63c09f3ba0626738eb3688f05995a9 (patch) | |
tree | 9f065cda585dd5a920fcdc03a0ca97231141e8a4 | |
parent | 2222561789db0bb1f9e94f265905a74f5ef6ee9e (diff) | |
download | pkgsubmit-ce7924949f63c09f3ba0626738eb3688f05995a9.tar pkgsubmit-ce7924949f63c09f3ba0626738eb3688f05995a9.tar.gz pkgsubmit-ce7924949f63c09f3ba0626738eb3688f05995a9.tar.bz2 pkgsubmit-ce7924949f63c09f3ba0626738eb3688f05995a9.tar.xz pkgsubmit-ce7924949f63c09f3ba0626738eb3688f05995a9.zip |
Include packages with no maintainer when filtering on nobody
-rw-r--r-- | autobuild/results.php | 2 |
1 files changed, 1 insertions, 1 deletions
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), |