Skip to content

Commit

Permalink
update bid vlues (prebid#5301)
Browse files Browse the repository at this point in the history
  • Loading branch information
ColombiaOnline authored and iggyfisk committed Jun 22, 2020
1 parent 144b40f commit ce2c56f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/colombiaBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export const spec = {
if (width == 320 && height == 50) {
cpm = cpm * 0.55;
}
if (cpm < 1) {
if (cpm <= 0) {
return bidResponses;
}
if (width !== 0 && height !== 0 && cpm !== 0 && crid !== 0) {
Expand Down

0 comments on commit ce2c56f

Please sign in to comment.