Skip to content

Commit

Permalink
Merge branch '4-fix-double-encoded-ref-in-dspx-adapter' into 'master'
Browse files Browse the repository at this point in the history
Resolve "Fix double-encoded ref in DSPX adapter"

Closes #4

See merge request osi/prebidjs!5
  • Loading branch information
zav1517 committed Oct 28, 2019
2 parents 1031798 + 7b6ec11 commit acc7245
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 acc7245

Please sign in to comment.