Skip to content

Commit

Permalink
update clean and gamoshi
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisHuie committed May 3, 2022
1 parent 14712d1 commit 060b253
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/cleanmedianetBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export const spec = {

const imp = {
id: transactionId,
instl: params.instl === 1 ? 1 : 0,
instl: deepAccess(bidRequest.ortb2Imp, 'instl') === 1 || params.instl === 1 ? 1 : 0,
tagid: adUnitCode,
bidfloor: 0,
bidfloorcur: 'USD',
Expand Down
2 changes: 1 addition & 1 deletion modules/gamoshiBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ export const spec = {

const imp = {
id: transactionId,
instl: params.instl === 1 ? 1 : 0,
instl: deepAccess(bidRequest.ortb2Imp, 'instl') === 1 || params.instl === 1 ? 1 : 0,
tagid: adUnitCode,
bidfloor: helper.getBidFloor(bidRequest) || 0,
bidfloorcur: 'USD',
Expand Down

0 comments on commit 060b253

Please sign in to comment.