Fix swizzled email args

This commit is contained in:
Eli Ribble 2026-04-16 21:58:41 +00:00
parent e464a9fcdb
commit 83c013785f
No known key found for this signature in database

View file

@ -13,7 +13,7 @@ type contentEmailReportConfirmation struct {
URLReportStatus string
}
func SendReportConfirmation(ctx context.Context, report_id, destination string) error {
func SendReportConfirmation(ctx context.Context, destination, report_id string) error {
err := maybeSendInitialEmail(ctx, destination)
if err != nil {
return fmt.Errorf("Failed to handle initial email: %w", err)