Skip to content

Commit

Permalink
fixes prebid#3128 YieldlabBidAdapter is not using bidRequest.params.a…
Browse files Browse the repository at this point in the history
…dSize as customsize in bidResponse
  • Loading branch information
Denny Bartelt committed Sep 26, 2018
1 parent 0b2ceb6 commit eb6f02c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/yieldlabBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ export const spec = {
const bidResponse = {
requestId: bidRequest.bidId,
cpm: matchedBid.price / 100,
width: primarysize[0],
height: primarysize[1],
width: customsize[0],
height: customsize[1],
creativeId: '' + matchedBid.id,
dealId: matchedBid.pid,
currency: CURRENCY_CODE,
Expand Down

0 comments on commit eb6f02c

Please sign in to comment.