Skip to content

Commit

Permalink
Gumgum Bid Adapter: fix failing test (#7913)
Browse files Browse the repository at this point in the history
* Gumgum - ADTS-174-Fix-failing-Prebid-JS-test

* removed extra line to fix lint issue

Co-authored-by: John Bauzon <john.bauzon@gumgum.com>
  • Loading branch information
john-ivan and john-bauzon-gumgum authored Jan 6, 2022
1 parent 55b9d66 commit 62a6f59
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions modules/gumgumBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -298,10 +298,10 @@ 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 62a6f59

Please sign in to comment.