Skip to content

Commit

Permalink
Merge branch 'feature-PRESIDECMS-2805_email-resend-fails-on-stats-log…
Browse files Browse the repository at this point in the history
…ging' into hotfix-10.26.8
  • Loading branch information
sebduggan committed Mar 13, 2024
2 parents 14ab980 + 0520727 commit 65be7ae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion system/services/email/EmailLoggingService.cfc
Original file line number Diff line number Diff line change
Expand Up @@ -1074,7 +1074,8 @@ component {
return;
}

if ( arguments.activity == "honeypotclick" ) {
var ignoredActivities = [ "honeypotclick", "resend" ];
if ( ArrayFind( ignoredActivities, arguments.activity ) ) {
return;
}

Expand Down

0 comments on commit 65be7ae

Please sign in to comment.