From 9b6c42f6a78eb8d420c264598a829b1aa8508d54 Mon Sep 17 00:00:00 2001 From: Nuthan Reddy <50863120+nuthanreddyox@users.noreply.github.com> Date: Thu, 26 Mar 2020 02:01:47 +0530 Subject: [PATCH] BidTimeout Event BugFix correcting auctionId path in BidTimeout event. --- modules/openxAnalyticsAdapter.js | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/openxAnalyticsAdapter.js b/modules/openxAnalyticsAdapter.js index 635691f8e98..60200dab46b 100644 --- a/modules/openxAnalyticsAdapter.js +++ b/modules/openxAnalyticsAdapter.js @@ -281,6 +281,7 @@ let openxAdapter = Object.assign(adapter({ urlParam, analyticsType }), { } } else if (eventType === bidTimeoutConst) { + let auctionId = info[0].auctionId // utils.logInfo('SA: Bid Timedout for', auctionId); pushEvent(eventType, info, auctionId); }