Skip to content

Commit

Permalink
fix vidazooUtils auction timeout logic (#12298)
Browse files Browse the repository at this point in the history
  • Loading branch information
elad-yosifon authored Oct 7, 2024
1 parent e101fb9 commit 22aa7ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/vidazooUtils/bidderUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ export function createBuildRequestsFn(createRequestDomain, createUniqueRequestDa

return function buildRequests(validBidRequests, bidderRequest) {
const topWindowUrl = bidderRequest.refererInfo.page || bidderRequest.refererInfo.topmostLocation;
const bidderTimeout = config.getConfig('bidderTimeout');
const bidderTimeout = bidderRequest.timeout || config.getConfig('bidderTimeout');

const singleRequestMode = allowSingleRequest && config.getConfig(`${bidderCode}.singleRequest`);

Expand Down

0 comments on commit 22aa7ce

Please sign in to comment.