Skip to content

Commit

Permalink
Deal override fix to resolve #618 (#619)
Browse files Browse the repository at this point in the history
  • Loading branch information
Index Exchange authored and Nate Cozi committed Sep 15, 2016
1 parent b8c580d commit d06b036
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/prebid.js
Original file line number Diff line number Diff line change
Expand Up @@ -232,10 +232,10 @@ function getBidLandscapeTargeting() {
function getAllTargeting() {
// Get targeting for the winning bid. Add targeting for any bids that have
// `alwaysUseBid=true`. If sending all bids is enabled, add targeting for losing bids.
var targeting = getDealTargeting()
.concat(getWinningBidTargeting())
var targeting = getWinningBidTargeting()
.concat(getAlwaysUseBidTargeting())
.concat($$PREBID_GLOBAL$$._sendAllBids ? getBidLandscapeTargeting() : []);
.concat($$PREBID_GLOBAL$$._sendAllBids ? getBidLandscapeTargeting() : [])
.concat(getDealTargeting());

//store a reference of the targeting keys
targeting.map(adUnitCode => {
Expand Down

0 comments on commit d06b036

Please sign in to comment.