Skip to content

Commit

Permalink
fix: source and account params (#12657)
Browse files Browse the repository at this point in the history
  • Loading branch information
escalax authored Jan 15, 2025
1 parent ac89272 commit 8ed696d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/escalaxBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ export const spec = {
const subdomain = getSubdomain();
const endpointURL = ESCALAX_URL
.replace(ESCALAX_SUBDOMAIN_MACRO, subdomain || ESCALAX_DEFAULT_SUBDOMAIN)
.replace(ESCALAX_ACCOUNT_ID_MACRO, sourceId)
.replace(ESCALAX_SOURCE_ID_MACRO, accountId);
.replace(ESCALAX_SOURCE_ID_MACRO, sourceId)
.replace(ESCALAX_ACCOUNT_ID_MACRO, accountId);
const request = converter.toORTB({ bidRequests: validBidRequests, bidderRequest });
return {
method: 'POST',
Expand Down

0 comments on commit 8ed696d

Please sign in to comment.