From 00b33ecc4f92140e624b8f0aba72059d498ed1a4 Mon Sep 17 00:00:00 2001 From: Patrick McCann Date: Wed, 23 Feb 2022 07:24:47 -0500 Subject: [PATCH 1/2] Update rhythmoneBidAdapter.js --- modules/rhythmoneBidAdapter.js | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/rhythmoneBidAdapter.js b/modules/rhythmoneBidAdapter.js index d0e399ab7e3..9e378f2d2ed 100644 --- a/modules/rhythmoneBidAdapter.js +++ b/modules/rhythmoneBidAdapter.js @@ -8,6 +8,7 @@ import { BANNER, VIDEO } from '../src/mediaTypes.js'; function RhythmOneBidAdapter() { this.code = 'rhythmone'; this.supportedMediaTypes = [VIDEO, BANNER]; + this.gvlid = 36; let SUPPORTED_VIDEO_PROTOCOLS = [2, 3, 5, 6]; let SUPPORTED_VIDEO_MIMES = ['video/mp4']; From 500aee4164123da887886054cda2f73ebaff82ef Mon Sep 17 00:00:00 2001 From: Patrick McCann Date: Wed, 23 Feb 2022 07:30:08 -0500 Subject: [PATCH 2/2] Update unrulyBidAdapter.js --- modules/unrulyBidAdapter.js | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/unrulyBidAdapter.js b/modules/unrulyBidAdapter.js index 99fbe63aeb4..77160bb01e6 100644 --- a/modules/unrulyBidAdapter.js +++ b/modules/unrulyBidAdapter.js @@ -193,6 +193,7 @@ const isBannerMediaTypeValid = (mediaTypeBannerData) => { export const adapter = { code: 'unruly', supportedMediaTypes: [VIDEO, BANNER], + gvlid: 36, isBidRequestValid: function (bid) { let siteId = deepAccess(bid, 'params.siteId'); let isBidValid = siteId && isMediaTypesValid(bid);