From f32e0805a10c118d1c49e070d14ff80f9e3b7417 Mon Sep 17 00:00:00 2001 From: Elad Yosifon Date: Thu, 29 Sep 2022 15:31:17 +0300 Subject: [PATCH] Rubicon. bugfix for singleRequest config regression (#9050) * fix rubicon singleRequest config regression #9049 * manually kick off testing Co-authored-by: Chris Huie --- modules/rubiconBidAdapter.js | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/rubiconBidAdapter.js b/modules/rubiconBidAdapter.js index ffcc230ac13..254799b995d 100644 --- a/modules/rubiconBidAdapter.js +++ b/modules/rubiconBidAdapter.js @@ -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); @@ -1279,8 +1279,7 @@ export function hasValidSupplyChainParams(schain) { } /** - * Creates a URL key value param, encoding the - * param unless the key is schain + * Creates a URL key value param, encoding the param unless the key is schain * @param {String} key * @param {String} param * @returns {String}