Skip to content

Commit

Permalink
Fix Contacts sync not to requeue 'share' and other actions (ignore th…
Browse files Browse the repository at this point in the history
…em and return true)
  • Loading branch information
1v4n4 committed Dec 25, 2024
1 parent 92dbb24 commit f9b5541
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/crm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,9 @@ export abstract class CRM implements CRMInterface {
this.log("failed " + email + " " + message.action.createdAt, ProcessStatus.error);
}
return r;
} else {
this.log("Not a privacy+withConsent message, not sent: " + email + " " + actionId, ProcessStatus.error);
return true;
}
this.verbose && (console.log(message));
this.log("don't know how to process " + email + " " + actionId, ProcessStatus.error);
Expand Down

0 comments on commit f9b5541

Please sign in to comment.