Skip to content

Commit

Permalink
fix rubicon singleRequest config regression prebid#9049
Browse files Browse the repository at this point in the history
  • Loading branch information
elad-yosifon committed Sep 28, 2022
1 parent 0eb39e9 commit d1f8cee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/rubiconBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ export const spec = {
}
});

if (rubiConf.singleRequest !== true) {
if (config.getConfig('rubicon.singleRequest') !== true) {
// bids are not grouped if single request mode is not enabled
requests = videoRequests.concat(bidRequests.filter(bidRequest => bidType(bidRequest) === 'banner').map(bidRequest => {
const bidParams = spec.createSlotParams(bidRequest, bidderRequest);
Expand Down

0 comments on commit d1f8cee

Please sign in to comment.