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
Various Adapters: Delete s2s transform bid params for adapters with no server equivalent #11402
base: master
Are you sure you want to change the base?
Conversation
Prep for prebid 9 but since none of these s2s adapters, this isn't breaking |
transformBidParams: function (params, isOpenRtb) { | ||
if (!baseAdapter.transformBidParams) { return params; } | ||
return baseAdapter.transformBidParams(params, isOpenRtb); | ||
}, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Just to confirm, this adapter extends appnexusBidAdapter which uses this function. Was this taken into consideration?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
they were confirmed as not having a server side adapter by @bretg
Progress on #6361