Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/prebid.js
Original file line number Diff line number Diff line change
Expand Up @@ -230,10 +230,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