summaryrefslogtreecommitdiffstats
path: root/extensions/Review/lib/WebService.pm
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/Review/lib/WebService.pm')
-rw-r--r--extensions/Review/lib/WebService.pm7
1 files changed, 6 insertions, 1 deletions
diff --git a/extensions/Review/lib/WebService.pm b/extensions/Review/lib/WebService.pm
index d16ab3dd8..24d38b2f1 100644
--- a/extensions/Review/lib/WebService.pm
+++ b/extensions/Review/lib/WebService.pm
@@ -18,6 +18,11 @@ use Bugzilla::Error;
use Bugzilla::Util qw(detaint_natural trick_taint);
use Bugzilla::WebService::Util 'filter';
+use constant PUBLIC_METHODS => qw(
+ flag_activity
+ suggestions
+);
+
sub suggestions {
my ($self, $params) = @_;
my $dbh = Bugzilla->switch_to_shadow_db();
@@ -55,7 +60,7 @@ sub suggestions {
if ($component) {
push @reviewers, @{ $component->reviewers_objs };
}
- if (!@{ $component->reviewers_objs }) {
+ if (!$component || !@{ $component->reviewers_objs }) {
push @reviewers, @{ $product->reviewers_objs };
}