diff options
-rw-r--r-- | Bugzilla/Quantum/SES.pm | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/Bugzilla/Quantum/SES.pm b/Bugzilla/Quantum/SES.pm index 47c591fb5..26df7a3eb 100644 --- a/Bugzilla/Quantum/SES.pm +++ b/Bugzilla/Quantum/SES.pm @@ -133,10 +133,7 @@ sub _process_bounce { } sub _process_complaint { - my ($self) = @_; - - # email notification to bugzilla admin - my ($notification) = @_; + my ($self, $notification) = @_; my $template = Bugzilla->template_inner(); my $json = JSON::MaybeXS->new( pretty => 1, @@ -200,4 +197,4 @@ sub ua { return $ua; } -1;
\ No newline at end of file +1; |