From eb6e5337117d7b75ba202a54b999d371cb6c8c0f Mon Sep 17 00:00:00 2001 From: pb-pete Date: Wed, 26 Feb 2025 18:20:48 +0200 Subject: [PATCH] feat(): ExcoBidAdapter trigger e2e tests --- modules/excoBidAdapter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/excoBidAdapter.js b/modules/excoBidAdapter.js index ca40a65cd95..eeadf4204f5 100644 --- a/modules/excoBidAdapter.js +++ b/modules/excoBidAdapter.js @@ -213,8 +213,8 @@ export const spec = { isBidRequestValid: function (bid) { const props = ['accountId', 'publisherId', 'tagId']; const missing = props.filter(prop => !bid.params[prop]); - const existingLegacy = ['cId', 'pId'].filter(prop => bid.params[prop]); const nonStr = props.filter(prop => !isStr(bid.params[prop])); + const existingLegacy = ['cId', 'pId'].filter(prop => bid.params[prop]); const message = `Bid will not be sent for ad unit '${bid.adUnitCode}'`; const suggestion = 'wrap it in quotes in your config';