Skip to content

Commit

Permalink
fixed bug where sendStandardTargeting throwing error for defaultBidde…
Browse files Browse the repository at this point in the history
…rSettings, fixes prebid#715
  • Loading branch information
snapwich committed Oct 18, 2016
1 parent 7ea91be commit 27e979e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bidmanager.js
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ function getKeyValueTargetingPairs(bidderCode, custBidObj) {
}

function filterIfSendStandardTargeting(bidderSettings) {
if (typeof bidderSettings.sendStandardTargeting !== "undefined" && bidder_settings[bidderCode].sendStandardTargeting === false) {
if (typeof bidderSettings.sendStandardTargeting !== "undefined" && bidderSettings.sendStandardTargeting === false) {
for(var key in keyValues) {
if(CONSTANTS.TARGETING_KEYS.indexOf(key) !== -1) {
delete keyValues[key];
Expand Down

0 comments on commit 27e979e

Please sign in to comment.