aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--NEWS3
-rw-r--r--Rpmdrake/gui.pm4
2 files changed, 6 insertions, 1 deletions
diff --git a/NEWS b/NEWS
index b2818112..41c6ccf8 100644
--- a/NEWS
+++ b/NEWS
@@ -3,6 +3,9 @@
- do not display any (truncated) banner when embedded while updating
media (like non-embedded case) (#43815)
- do not display any banner when embedded while adding media
+- rpmdrake:
+ o fix listing updates per importance (#41331)
+ (regression introduced in 3.95 on 2007-09-14)
Version 4.18.2 - 10 September 2008, Thierry Vignaud
diff --git a/Rpmdrake/gui.pm b/Rpmdrake/gui.pm
index da151920..617ef120 100644
--- a/Rpmdrake/gui.pm
+++ b/Rpmdrake/gui.pm
@@ -542,9 +542,11 @@ sub pkgs_provider {
);
foreach my $importance (qw(bugfix security normal)) {
$tmp_filter_methods{$importance} = sub {
+ my @media = keys %$descriptions;
[ grep {
my ($name) = split_fullname($_);
- $descriptions->{$name}{importance} eq $importance } @{$h->{updates}} ];
+ my $medium = find { $descriptions->{$_}{$name} } @media;
+ $medium && $descriptions->{$medium}{$name}{importance} eq $importance } @{$h->{updates}} ];
};
}