diff options
| author | Aleksandr Nogikh <nogikh@google.com> | 2023-05-11 16:52:41 +0200 |
|---|---|---|
| committer | Aleksandr Nogikh <wp32pw@gmail.com> | 2023-05-12 13:03:07 +0200 |
| commit | 46a1430596ca4a4bbd2ac268b35da24938a66094 (patch) | |
| tree | 9a812d92230045e47f17ce9efd991b8860d0be27 /dashboard/app/reporting_email.go | |
| parent | adb9a3cd3732374cec4a7914bb6db944c1b16ef2 (diff) | |
dashboard: refactor currentReporting invocations
The method doesn't need context.Context.
Diffstat (limited to 'dashboard/app/reporting_email.go')
| -rw-r--r-- | dashboard/app/reporting_email.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dashboard/app/reporting_email.go b/dashboard/app/reporting_email.go index 257b41a0d..7398a0c5b 100644 --- a/dashboard/app/reporting_email.go +++ b/dashboard/app/reporting_email.go @@ -1090,7 +1090,7 @@ func matchBugFromList(c context.Context, sender, subject string) (*bugInfoResult log.Infof(c, "access denied") continue } - reporting, bugReporting, _, _, err := currentReporting(c, bug) + reporting, bugReporting, _, _, err := currentReporting(bug) if err != nil || reporting == nil { log.Infof(c, "could not query reporting: %s", err) continue |
