-
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
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 commentThe reason will be displayed to describe this comment to others. Learn more. why are we only setting There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. https://gist.github.com/mkendall07/1ef1b27ed3501d7b03fbd72ec455bab4 |
||
auctionManager.setStatusForBids(targeting[key][key2], BID_TARGETING_SET); | ||
} | ||
}); | ||
}); | ||
|
||
// emit event | ||
events.emit(SET_TARGETING, targetingSet); | ||
}; | ||
|
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 :)