Skip to content

Commit

Permalink
Update omsBidAdapter.js
Browse files Browse the repository at this point in the history
fixes #12047
  • Loading branch information
patmmccann authored Jul 29, 2024
1 parent d979682 commit 146732d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/omsBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ function buildRequests(bidReqs, bidderRequest) {
}

function isBidRequestValid(bid) {
if (bid.bidder !== BIDDER_CODE || !bid.params || !bid.params.publisherId) {
if (!bid.params || !bid.params.publisherId) {
return false;
}

Expand Down

0 comments on commit 146732d

Please sign in to comment.