Skip to content

Commit b4705e3

Browse files
bretgharpere
authored andcommitted
Rubicon adapter: Removed extraneous warning (#3218)
* Rubicon adapter: Removed extraneous warning * removing spaces to kick off the build again circleci failed on some other adapter
1 parent 47d726a commit b4705e3

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

modules/rubiconBidAdapter.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,11 +92,9 @@ export const spec = {
9292
if (typeof bid.params !== 'object') {
9393
return false;
9494
}
95-
9695
if (!/^\d+$/.test(bid.params.accountId)) {
9796
return false;
9897
}
99-
10098
return !!bidType(bid, true);
10199
},
102100
/**
@@ -581,7 +579,6 @@ function mapSizes(sizes) {
581579
*/
582580
export function hasVideoMediaType(bidRequest) {
583581
if (typeof utils.deepAccess(bidRequest, 'params.video') === 'undefined' && Array.isArray(utils.deepAccess(bidRequest, 'params.sizes'))) {
584-
utils.logWarn('Rubicon bid adapter Warning: no video params found, convert to banner with the bidder size id');
585582
return false;
586583
}
587584
return (bidRequest.mediaType === VIDEO || typeof utils.deepAccess(bidRequest, `mediaTypes.${VIDEO}`) !== 'undefined');

0 commit comments

Comments
 (0)