From bce87d67a220e86fc504b50d8a9c111ffd8e33fa Mon Sep 17 00:00:00 2001 From: Aleksandr Nogikh Date: Wed, 12 Apr 2023 11:50:38 +0200 Subject: dashboard: always track discussion replies It could be the case that the discussion replies do not mention syzbot bugs in any way. But if bugs were mentioned somewhere above, we must still record everything. --- dashboard/app/reporting_email.go | 4 ---- 1 file changed, 4 deletions(-) (limited to 'dashboard') diff --git a/dashboard/app/reporting_email.go b/dashboard/app/reporting_email.go index 176bd9e79..6119411f6 100644 --- a/dashboard/app/reporting_email.go +++ b/dashboard/app/reporting_email.go @@ -571,10 +571,6 @@ func processDiscussionEmail(c context.Context, msg *email.Email, source dashapi. } } msg.BugIDs = extIDs - if len(extIDs) == 0 { - log.Infof(c, "filtered all extIDs out") - return nil - } err := saveDiscussionMessage(c, msg, source, dType) if err != nil { return fmt.Errorf("failed to save in discussions: %v", err) -- cgit mrf-deployment