You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Our ingestion pipeline currently overwrites, deletes, and updates values in the event payload before ingestion, such as $elements.
This makes things confusing, hard to debug, and potentially detrimental to exports, as the stored payload doesn't match the payload we accept as input.
An example of this is how we expect $elements to contain properties such as attr__class, which we convert to attr_class. However, if you send attr_class in the payload, we don't accept it :D
The text was updated successfully, but these errors were encountered:
This issue hasn't seen activity in two years! If you want to keep it open, post a comment or remove the stale label – otherwise this will be closed in two weeks.
Our ingestion pipeline currently overwrites, deletes, and updates values in the event payload before ingestion, such as
$elements
.This makes things confusing, hard to debug, and potentially detrimental to exports, as the stored payload doesn't match the payload we accept as input.
An example of this is how we expect
$elements
to contain properties such asattr__class
, which we convert toattr_class
. However, if you sendattr_class
in the payload, we don't accept it :DThe text was updated successfully, but these errors were encountered: