From 52d262bbeb30b727950bf143532460e6552469cf Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Thu, 11 Aug 2016 11:49:14 -0700 Subject: [PATCH] me.archived should be an AND not an OR --- Debbugs/Bugs.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Debbugs/Bugs.pm b/Debbugs/Bugs.pm index 8162bd3..6e57981 100644 --- a/Debbugs/Bugs.pm +++ b/Debbugs/Bugs.pm @@ -582,7 +582,7 @@ sub get_bugs_by_db{ } # handle archive if (defined $param{archive} and $param{archive} ne 'both') { - $rs = $rs->search({'me.archived' => $param{archive}}) + $rs = $rs->search(['me.archived' => $param{archive}]); } return $rs->get_column('id')->all(); } -- 2.39.2