We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0965af5 commit 91366d2Copy full SHA for 91366d2
components/hubspot/sources/new-contact-property-change/new-contact-property-change.mjs
@@ -63,6 +63,13 @@ export default {
63
if (!history || history.length === 0) {
64
return false;
65
}
66
+
67
+ const propertyTimestamp = history[0].timestamp;
68
+ const createDate = contact.properties.createdate;
69
70
+ if (propertyTimestamp === createDate) {
71
+ return false;
72
+ }
73
74
75
return !updatedAfter || this.getTs(contact) > updatedAfter;
0 commit comments