Skip to content

Commit

Permalink
AdagioAnalyticsAdapter: fix rtdUid getter (prebid#12187)
Browse files Browse the repository at this point in the history
  • Loading branch information
osazos authored Aug 29, 2024
1 parent ac5cc64 commit d690c86
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/adagioAnalyticsAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ function handlerAuctionInit(event) {
// Check if Adagio is on the bid requests.
const adagioBidRequest = event.bidderRequests.find(bidRequest => isAdagio(bidRequest.bidderCode));

const rtdUid = deepAccess(adagioBidRequest, 'ortb2.site.ext.data.adg_rtd.uid');
const rtdUid = deepAccess(event.bidderRequests[0], 'ortb2.site.ext.data.adg_rtd.uid');
cache.addPrebidAuctionIdRef(prebidAuctionId, rtdUid);

cache.auctions[prebidAuctionId] = {};
Expand Down

0 comments on commit d690c86

Please sign in to comment.