Skip to content

Commit

Permalink
Prebid Server Adapter: fix eid permissions for ie11 (#7583)
Browse files Browse the repository at this point in the history
* Update index.js

* Update index.js
  • Loading branch information
patmmccann authored Oct 14, 2021
1 parent 7b6aad6 commit 9ad4b84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/prebidServerBidAdapter/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -799,7 +799,7 @@ const OPEN_RTB_PROTOCOL = {
if (requestedBidders && isArray(requestedBidders)) {
eidPermissions.forEach(i => {
if (i.bidders) {
i.bidders = i.bidders.filter(bidder => requestedBidders.includes(bidder))
i.bidders = i.bidders.filter(bidder => includes(requestedBidders, bidder))
}
});
}
Expand Down

0 comments on commit 9ad4b84

Please sign in to comment.