Skip to content

Commit

Permalink
fix isBidRequestValid() (prebid#12093)
Browse files Browse the repository at this point in the history
  • Loading branch information
MykhailoTeqBlaze authored Aug 7, 2024
1 parent 81459cd commit 22d913e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/teqblazeUtils/bidderUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ const checkIfObjectHasKey = (keys, obj, mode = 'some') => {
const val = obj[key];

if (mode === 'some' && val) return true;
if (!val) return false;
if (mode === 'every' && !val) return false;
}

return mode === 'every';
Expand Down

0 comments on commit 22d913e

Please sign in to comment.