Skip to content

Commit

Permalink
Timeout RTD Issue Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Komal Kumari authored and Komal Kumari committed Sep 26, 2024
1 parent 44b2a46 commit 79c0e5b
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions modules/rtdModule/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -318,10 +318,8 @@ export const setBidRequestsData = timedAuctionHook('rtd', function setBidRequest
relevantSubModules.forEach(sm => {
const fpdGuard = guardOrtb2Fragments(reqBidsConfigObj.ortb2Fragments || {}, activityParams(MODULE_TYPE_RTD, sm.name));
verifiers.push(fpdGuard.verify);
sm.getBidRequestData({
...reqBidsConfigObj,
ortb2Fragments: fpdGuard.obj
}, onGetBidRequestDataCallback.bind(sm), sm.config, _userConsent)
reqBidsConfigObj.ortb2Fragments = fpdGuard.obj;
sm.getBidRequestData(reqBidsConfigObj, onGetBidRequestDataCallback.bind(sm), sm.config, _userConsent)
});

function onGetBidRequestDataCallback() {
Expand Down

0 comments on commit 79c0e5b

Please sign in to comment.