Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

EXCO Bid Adapter: Support of new publisherId, accountId and tagId parameters. #12781

Merged
merged 12 commits into from
Feb 28, 2025
Prev Previous commit
feat(): ExcoBidAdapter trigger e2e tests
  • Loading branch information
pb-pete committed Feb 26, 2025
commit eb6e5337117d7b75ba202a54b999d371cb6c8c0f
2 changes: 1 addition & 1 deletion modules/excoBidAdapter.js
Original file line number Diff line number Diff line change
@@ -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';