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

bugfix for targeting not setting for all adslots #2615

Merged
merged 2 commits into from
May 24, 2018
Merged

Conversation

jaiminpanchal27
Copy link
Collaborator

Type of change

  • Bugfix

Description of change

Targeting was not getting set for all adSlots. We were setting targetingSet status in the wrong function.

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') {
Copy link
Member

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?

Copy link
Collaborator Author

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.

Copy link
Member

@mkendall07 mkendall07 left a 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) => {
Copy link
Member

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 :)

@mkendall07 mkendall07 merged commit 95860b5 into master May 24, 2018
@mkendall07 mkendall07 deleted the targeting-bugfix branch May 24, 2018 20:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants