Skip to content

Commit

Permalink
Honour bidFloor key in params (#5999)
Browse files Browse the repository at this point in the history
Co-authored-by: monis.q <monis.q@media.net>
  • Loading branch information
monis0395 and monisq authored Nov 20, 2020
1 parent 1e98aef commit 04c941f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/medianetBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ function slotParams(bidRequest) {
params.tagid = bidRequest.params.crid.toString();
}

let bidFloor = parseFloat(bidRequest.params.bidfloor);
let bidFloor = parseFloat(bidRequest.params.bidfloor || bidRequest.params.bidFloor);
if (bidFloor) {
params.bidfloor = bidFloor;
}
Expand Down

0 comments on commit 04c941f

Please sign in to comment.