Skip to content

Commit

Permalink
Fixed config ref for link click tracking logging (#21832)
Browse files Browse the repository at this point in the history
no ref
  • Loading branch information
9larsons committed Dec 8, 2024
1 parent de6efba commit 8d4abb4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ module.exports = class LinkClickRepository {
// Convert uuid to id
const member = await this.#Member.findOne({uuid: linkClick.member_uuid});
if (!member) {
if (config.get('captureLinkClickBadMemberUuid')) {
if (config.get('bulkEmail:captureLinkClickBadMemberUuid')) {
sentry.captureMessage('LinkClickTrackingService > Member not found', {extra: {member_uuid: linkClick.member_uuid}});
}
return;
Expand Down

0 comments on commit 8d4abb4

Please sign in to comment.