Skip to content

Commit

Permalink
fix double-urlecoded referer (prebid#4388)
Browse files Browse the repository at this point in the history
  • Loading branch information
onlsol authored and harpere committed Oct 30, 2019
1 parent 2c1a8be commit 3f2b2c2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/stvBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,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;
let endpoint = VADS_ENDPOINT_URL;

Expand Down

0 comments on commit 3f2b2c2

Please sign in to comment.