Skip to content

Commit

Permalink
Adagio Bid Adapter: fix ortb delivery video param validation (#11144)
Browse files Browse the repository at this point in the history
  • Loading branch information
osazos authored Feb 26, 2024
1 parent 1ecfe8e commit 5b6dd8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/adagioBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ export const ORTB_VIDEO_PARAMS = {
'boxingallowed': (value) => isInteger(value),
'playbackmethod': (value) => isArrayOfNums(value),
'playbackend': (value) => isInteger(value),
'delivery': (value) => isInteger(value),
'delivery': (value) => isArrayOfNums(value),
'pos': (value) => isInteger(value),
'api': (value) => isArrayOfNums(value)
};
Expand Down

0 comments on commit 5b6dd8c

Please sign in to comment.