Skip to content

Commit

Permalink
extracted bidder from recieved object in timeout event (prebid#2741)
Browse files Browse the repository at this point in the history
  • Loading branch information
tegner authored and AlessandroDG committed Sep 13, 2018
1 parent 647e345 commit db6d5e9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion modules/googleAnalyticsAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -235,7 +235,8 @@ function sendBidTimeouts(timedOutBidders) {
_analyticsQueue.push(function () {
utils._each(timedOutBidders, function (bidderCode) {
_eventCount++;
window[_gaGlobal](_trackerSend, 'event', _category, 'Timeouts', bidderCode, _disableInteraction);
var bidderName = bidderCode.bidder;
window[_gaGlobal](_trackerSend, 'event', _category, 'Timeouts', bidderName, _disableInteraction);
});
});

Expand Down

0 comments on commit db6d5e9

Please sign in to comment.