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

EX-5084: Remove Sovrn analytics adapter #69

Open
wants to merge 11 commits into
base: master
Choose a base branch
from
14 changes: 1 addition & 13 deletions modules/appnexusBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -774,18 +774,6 @@ function bidToTag(bid) {
} else {
tag.code = bid.params.inv_code;
}
// Xandr expects GET variable to be in a following format:
// page.html?ast_override_div=divId:creativeId,divId2:creativeId2
const overrides = getParameterByName('ast_override_div');
if (isStr(overrides) && overrides !== '') {
const adUnitOverride = overrides.split(',').find((pair) => pair.startsWith(`${bid.adUnitCode}:`));
if (adUnitOverride) {
const forceCreativeId = adUnitOverride.split(':')[1];
if (forceCreativeId) {
tag.force_creative_id = parseInt(forceCreativeId, 10);
}
}
}
tag.allow_smaller_sizes = bid.params.allow_smaller_sizes || false;
tag.use_pmt_rule = (typeof bid.params.use_payment_rule === 'boolean') ? bid.params.use_payment_rule
: (typeof bid.params.use_pmt_rule === 'boolean') ? bid.params.use_pmt_rule : false;
Expand Down Expand Up @@ -1030,7 +1018,7 @@ function getContextFromPlcmt(ortbPlcmt, ortbStartDelay) {
}

if (ortbPlcmt === 2) {
if (typeof ortbStartDelay === 'undefined') {
if (!ortbStartDelay) {
return;
}
if (ortbStartDelay === 0) {
Expand Down
303 changes: 0 additions & 303 deletions modules/brightcomBidAdapter.js

This file was deleted.

46 changes: 0 additions & 46 deletions modules/brightcomBidAdapter.md

This file was deleted.

Loading