Skip to content

Commit

Permalink
Update colossussspBidAdapter.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Bill Newman authored Jan 15, 2021
1 parent ffdefbd commit 0cb39f1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion modules/colossussspBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,14 @@ export const spec = {
let traff = bid.params.traffic || BANNER
let placement = {
placementId: bid.params.placement_id,
bidfloor: isNan(bid.params.bidfloor) ? 0 : Number(bid.params.bidfloor)
bidId: bid.bidId,
sizes: bid.mediaTypes[traff].sizes,
traffic: traff,
eids: []
};
if (!isNan(bid.params.bidfloor) {
placement.bidfloor = Number(bid.params.bidfloor);
}
if (bid.schain) {
placement.schain = bid.schain;
}
Expand Down

0 comments on commit 0cb39f1

Please sign in to comment.