Skip to content

Commit

Permalink
Prebid v0.10.0 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
protonate committed Jun 20, 2016
1 parent 6f578c5 commit eae3400
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "prebid.js",
"version": "0.9.2",
"version": "0.10.0",
"description": "Header Bidding Management Library",
"main": "src/prebid.js",
"scripts": {
Expand All @@ -23,7 +23,7 @@
"pubmatic",
"pulsepoint",
"rubicon",
"sekindo",
"sekindo",
"sonobi",
"sovrn",
"springserve",
Expand Down
2 changes: 1 addition & 1 deletion src/bidmanager.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ exports.bidsBackAll = function() {
};

function getBidSetForBidder(bidder) {
return pbjs._bidsRequested.find(bidSet => bidSet.bidderCode === bidder);
return pbjs._bidsRequested.find(bidSet => bidSet.bidderCode === bidder) || { start: null };
}

/*
Expand Down
2 changes: 1 addition & 1 deletion src/prebid.js
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ function setTargeting(targetingConfig) {
return value;
})
.forEach(value => {
slot.setTargeting(Object.keys(key)[0], value)
slot.setTargeting(Object.keys(key)[0], value);
});
}));
});
Expand Down

0 comments on commit eae3400

Please sign in to comment.