Description
What article on segment.com/docs is affected?
https://segment.com/docs/connections/sources/catalog/libraries/website/javascript/#load-options
What part(s) of the article would you like to see updated?
Current docs for analytics.js load integrations options do not specify that "Segment.io": true
must be present in integrations object if "All": false
is added for data to still pass to enabled destinations added after "All": false
.
{
All: false,
Mixpanel: true,
}
Data doesn't send to Mixpanel. Segment browser plugin still "tracks" but does is not shown in UI or delivery stats.
{
All: false,
Segment.io: true,
Mixpanel: true,
}
Data sends to mixpanel.
I found this archived issue that pointed this out: segmentio/analytics.js#577
It looks like the issue was "resolved" in the fact that it was added to the code snippet, but not stated anywhere that "Segment.io": true
is required if "All": false
is present to continue to pass data to any enabled destinations.
Additional information
No response