Skip to content

Commit

Permalink
PBS Bid Adapter: fix s2s alias collision with built-in adapter aliasi…
Browse files Browse the repository at this point in the history
…ng (prebid#6379)

* fixed overwriting of aliases for s2s

* made change

* added fix
  • Loading branch information
Ryan Schweitzer authored and seergiioo6 committed Mar 23, 2021
1 parent d474a46 commit 25459d4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/prebidServerBidAdapter/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,7 @@ const OPEN_RTB_PROTOCOL = {
}

if (!utils.isEmpty(aliases)) {
request.ext.prebid.aliases = aliases;
request.ext.prebid.aliases = {...request.ext.prebid.aliases, ...aliases};
}

const bidUserIdAsEids = utils.deepAccess(bidRequests, '0.bids.0.userIdAsEids');
Expand Down

0 comments on commit 25459d4

Please sign in to comment.