Skip to content

Commit

Permalink
Update sovrnBidAdapter.js: support plcmt (#11704)
Browse files Browse the repository at this point in the history
  • Loading branch information
patmmccann committed Jun 5, 2024
1 parent 11377dd commit 9959427
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions modules/sovrnBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ const ORTB_VIDEO_PARAMS = {
'h': (value) => isInteger(value),
'startdelay': (value) => isInteger(value),
'placement': (value) => isInteger(value) && value >= 1 && value <= 5,
'plcmt': (value) => isInteger(value) && value >= 1 && value <= 4,
'linearity': (value) => [1, 2].indexOf(value) !== -1,
'skip': (value) => [0, 1].indexOf(value) !== -1,
'skipmin': (value) => isInteger(value),
Expand Down

0 comments on commit 9959427

Please sign in to comment.