Skip to content

Commit

Permalink
add timeout value to timeout pixel (#8224)
Browse files Browse the repository at this point in the history
  • Loading branch information
ybootin authored Mar 30, 2022
1 parent 35e46cd commit 3015515
Show file tree
Hide file tree
Showing 2 changed files with 361 additions and 335 deletions.
5 changes: 4 additions & 1 deletion modules/seedtagBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -154,9 +154,12 @@ export function getTimeoutUrl (data) {
isArray(data[0].params) && data[0].params[0]
) {
const params = data[0].params[0];
const timeout = data[0].timeout

queryParams =
'?publisherToken=' + params.publisherId +
'&adUnitId=' + params.adUnitId;
'&adUnitId=' + params.adUnitId +
'&timeout=' + timeout;
}
return SEEDTAG_SSP_ONTIMEOUT_ENDPOINT + queryParams;
}
Expand Down
Loading

0 comments on commit 3015515

Please sign in to comment.