Website: update clay webhook (#39068)

Changes:
- Updated the clay webhook to only trim LinkedIn URLs if one is
provided.
This commit is contained in:
Eric 2026-01-30 10:33:45 -06:00 committed by GitHub
parent f5b91feba5
commit b3fcb2c7db
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -126,7 +126,10 @@ module.exports = {
throw 'couldNotCreateActivity';
}
let trimmedLinkedinUrl = linkedinUrl.replace(sails.config.custom.RX_PROTOCOL_AND_COMMON_SUBDOMAINS, '');
let trimmedLinkedinUrl;
if(linkedinUrl) {
trimmedLinkedinUrl = linkedinUrl.replace(sails.config.custom.RX_PROTOCOL_AND_COMMON_SUBDOMAINS, '');
}
// Create the new Fleet website page view record.
let newHistoricalRecordId = await sails.helpers.salesforce.createHistoricalEvent.with({