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
The is a code in ga.js that sends all events fired before enableAnalytics called. And it seems to be inconsistent with the current events implementation:
if (eventObj.eventType === BID_REQUESTED) {
//bid is 1st args
bid = args[0];
sendBidRequestToGa(bid);
}
So it expects args to be a list with numeric indices, yet here is the code from event.js that stores the fired events:
As the result "bid" in ga.js is undefined and sendBidRequestToGa function does nothing. If I change bid = args[0]; to bid = args; it works like a charm.
The text was updated successfully, but these errors were encountered:
The is a code in ga.js that sends all events fired before enableAnalytics called. And it seems to be inconsistent with the current events implementation:
So it expects args to be a list with numeric indices, yet here is the code from event.js that stores the fired events:
...
As the result "bid" in ga.js is undefined and sendBidRequestToGa function does nothing. If I change
bid = args[0];
tobid = args;
it works like a charm.The text was updated successfully, but these errors were encountered: