Skip to content

Commit

Permalink
Merge pull request #2 from gumgum/ADTS-174-Fix-failing-Prebid-JS-test
Browse files Browse the repository at this point in the history
Gumgum - ADTS-174-Fix-failing-Prebid-JS-test
  • Loading branch information
john-ivan authored Jan 6, 2022
2 parents c73f6c6 + 66d9da0 commit 5b34cc7
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions modules/gumgumBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -298,10 +298,11 @@ function buildRequests(validBidRequests, bidderRequest) {
const date = new Date();
const lt = date.getTime();
const to = date.getTimezoneOffset();
if (to) {
lt && (data.lt = lt);
data.to = to;
}

// ADTS-174 Removed unnecessary checks to fix failing test
data.lt = lt;
data.to = to;


// ADTS-169 add adUnitCode to requests
if (adUnitCode) data.aun = adUnitCode
Expand Down

0 comments on commit 5b34cc7

Please sign in to comment.