Skip to content

Commit

Permalink
Updating origBidId value
Browse files Browse the repository at this point in the history
  • Loading branch information
pm-priyanka-deshmane authored Nov 5, 2024
1 parent ebf22bf commit 9c2e52d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions modules/pubmaticAnalyticsAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,6 @@ function executeBidWonLoggerCall(auctionId, adUnitId) {
pixelURL += '&tst=' + Math.round((new window.Date()).getTime() / 1000);
pixelURL += '&iid=' + enc(wiid);
pixelURL += '&bidid=' + (generatedBidId ? enc(generatedBidId) : enc(winningBidId));
pixelURL += '&origbidid=' + enc(winningBidId);
pixelURL += '&pid=' + enc(profileId);
pixelURL += '&pdvid=' + enc(profileVersionId);
pixelURL += '&slot=' + enc(adUnitId);
Expand All @@ -641,7 +640,7 @@ function executeBidWonLoggerCall(auctionId, adUnitId) {
pixelURL += '&eg=' + enc(winningBid.bidResponse.bidGrossCpmUSD);
pixelURL += '&kgpv=' + enc(getValueForKgpv(winningBid, adUnitId));
pixelURL += '&rf=' + enc(origAdUnit?.pubmaticAutoRefresh?.isRefreshed ? 1 : 0);
pixelURL += '&origbidid=' + enc(winningBid?.bidResponse?.partnerImpId || winningBid?.bidResponse?.prebidBidId || winningBid.bidId);
pixelURL += '&origbidid=' + enc(winningBid?.bidResponse?.partnerImpId || winningBidId);
pixelURL += '&di=' + enc(winningBid?.bidResponse?.dealId || OPEN_AUCTION_DEAL_ID);
pixelURL += '&pb=' + enc(pg);

Expand Down

0 comments on commit 9c2e52d

Please sign in to comment.