Skip to content

Commit

Permalink
fix double-urlecoded referrer (prebid#4386)
Browse files Browse the repository at this point in the history
  • Loading branch information
onlsol authored and harpere committed Oct 30, 2019
1 parent 3ea73d4 commit f77c0c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/dspxBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const spec = {
const placementId = params.placement;

const rnd = Math.floor(Math.random() * 99999999999);
const referrer = encodeURIComponent(bidderRequest.refererInfo.referer);
const referrer = bidderRequest.refererInfo.referer;
const bidId = bidRequest.bidId;
const payload = {
_f: 'html',
Expand Down

0 comments on commit f77c0c2

Please sign in to comment.