Skip to content

Commit

Permalink
fix build failure
Browse files Browse the repository at this point in the history
  • Loading branch information
Rajkumar Natarajan committed Feb 12, 2020
1 parent 778cae3 commit 3cd47d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/synacormediaBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export const spec = {
imp: []
};

if (bidderRequest.bids !== undefined && bidderRequest.bids[0] !== undefined) {
if (bidderRequest != null && bidderRequest.bids !== undefined && bidderRequest.bids[0] !== undefined) {
const schain = bidderRequest.bids[0].schain;
if (schain !== undefined) {
openRtbBidRequest.source = {};
Expand Down

0 comments on commit 3cd47d0

Please sign in to comment.