Skip to content

Commit

Permalink
fix(hubspot): property mismatch (#2765)
Browse files Browse the repository at this point in the history
  • Loading branch information
mihir-4116 authored Oct 23, 2023
2 parents f47a2dc + 5530031 commit 5ddabdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/v0/destinations/hs/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -605,7 +605,7 @@ const splitEventsForCreateUpdate = async (inputs, destination) => {
const { destinationExternalId } = getDestinationExternalIDInfoForRetl(message, DESTINATION);

const filteredInfo = updateHubspotIds.filter(
(update) => update.property.toString() === destinationExternalId.toString(),
(update) => update.property.toString().toLowerCase() === destinationExternalId.toString().toLowerCase(),
);

if (filteredInfo.length > 0) {
Expand Down

0 comments on commit 5ddabdf

Please sign in to comment.