PluginProbe
HubSpot All-In-One Marketing – Forms, Popups, Live Chat / 11.3.75
HubSpot All-In-One Marketing – Forms, Popups, Live Chat v11.3.75
11.3.75 11.3.73 11.3.71 11.3.70 11.3.69 11.3.64 11.3.65 11.3.62 11.3.61 11.3.56 11.3.58 11.0.31 11.0.52 11.0.54 11.0.56 11.0.58 11.0.7 11.1.10 11.1.11 11.1.13 11.1.14 11.1.15 11.1.2 11.1.20 11.1.21 All 73 releases
← All changes | scripts/lib/Raven.ts +8 -3 11.1.1411.3.75 View file →
@@ -8,17 +8,22 @@
8 8 plugins,
9 9 } from '../constants/leadinConfig';
10 10
11 11 export function configureRaven() {
12 - if (hubspotBaseUrl.indexOf('app.hubspot.com') === -1) {
12 + if (hubspotBaseUrl.indexOf('local') !== -1) {
13 13 return;
14 14 }
15 -
15 + const domain = hubspotBaseUrl.replace(/https?:\/\/app/, '');
16 16 Raven.config(
17 - 'https://e9b8f382cdd130c0d415cd977d2be56f@exceptions.hubspot.com/1',
17 + `https://a9f08e536ef66abb0bf90becc905b09e@exceptions${domain}/v2/1`,
18 18 {
19 19 instrument: {
20 20 tryCatch: false,
21 + },
22 + shouldSendCallback(data) {
23 + return (
24 + !!data && !!data.culprit && /plugins\/leadin\//.test(data.culprit)
25 + );
21 26 },
22 27 release: leadinPluginVersion,
23 28 }
24 29 ).install();