Skip to content

Commit

Permalink
fix(customerio): convert eventName to string for truncate
Browse files Browse the repository at this point in the history
  • Loading branch information
ujjwal-ab committed Nov 6, 2023
1 parent 2eeed33 commit 3eb12f8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/v0/destinations/customerio/transform.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,7 @@ function processSingleMessage(message, destination) {
logger.error(`could not determine type ${messageType}`);
throw new InstrumentationError(`could not determine type ${messageType}`);
}
evName = evName ? String(evName) : evName;
const response = responseBuilder(message, evType, evName, destination, messageType);

// replace default domain with EU data center domainc for EU based account
Expand Down

0 comments on commit 3eb12f8

Please sign in to comment.