-
Notifications
You must be signed in to change notification settings - Fork 2.1k
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
bugfix for targeting not setting for all adslots #2615
Conversation
src/prebid.js
Outdated
@@ -174,6 +174,14 @@ $$PREBID_GLOBAL$$.setTargetingForGPTAsync = function (adUnit) { | |||
// now set new targeting keys | |||
targeting.setTargetingForGPT(targetingSet); | |||
|
|||
Object.keys(targeting).forEach((key) => { | |||
Object.keys(targeting[key]).forEach((key2) => { | |||
if (key2 === 'hb_adid') { |
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.
why are we only setting bid_targeting_set
for winning bid (top bid) when the default in prebid 1.0 is sendAllBids?
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.
https://gist.github.com/mkendall07/1ef1b27ed3501d7b03fbd72ec455bab4
A bid picked for targeting (prebid auction win) will be marked bid.status = 'targetingSet' - which indicates it's not eligible for future auctions, until such status is cleared. This will prevent a winning bid to be set in targeting more than 1 time.
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.
lgtm
src/prebid.js
Outdated
@@ -174,6 +174,14 @@ $$PREBID_GLOBAL$$.setTargetingForGPTAsync = function (adUnit) { | |||
// now set new targeting keys | |||
targeting.setTargetingForGPT(targetingSet); | |||
|
|||
Object.keys(targeting).forEach((key) => { | |||
Object.keys(targeting[key]).forEach((key2) => { |
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.
you should name things better :)
* bugfix for targeting not setting for all adslots * updated var names
* bugfix for targeting not setting for all adslots * updated var names
Type of change
Description of change
Targeting was not getting set for all adSlots. We were setting
targetingSet
status in the wrong function.