We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d06c184 commit fdc0ed9Copy full SHA for fdc0ed9
package.json
@@ -4,6 +4,7 @@
4
"description": "Header Bidding Management Library",
5
"main": "src/prebid.js",
6
"scripts": {
7
+ "serve": "gulp serve",
8
"test": "gulp test",
9
"lint": "gulp lint"
10
},
src/prebid.js
@@ -1009,7 +1009,9 @@ $$PREBID_GLOBAL$$.markWinningBidAsUsed = function (markBidRequest) {
1009
}
1010
1011
if (bids.length > 0) {
1012
- bids[0].status = CONSTANTS.BID_STATUS.RENDERED;
+ const winningBid = bids[0];
1013
+ auctionManager.addWinningBid(winningBid);
1014
+ winningBid.status = CONSTANTS.BID_STATUS.RENDERED;
1015
1016
};
1017
0 commit comments