Skip to content

Commit

Permalink
Fix encode referrer twice (prebid#4880)
Browse files Browse the repository at this point in the history
  • Loading branch information
yashigani authored Feb 25, 2020
1 parent 9022806 commit 303f0e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/yieldoneBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ export const spec = {
const params = bidRequest.params;
const placementId = params.placementId;
const cb = Math.floor(Math.random() * 99999999999);
const referrer = encodeURIComponent(bidderRequest.refererInfo.referer);
const referrer = bidderRequest.refererInfo.referer;
const bidId = bidRequest.bidId;
const unitCode = bidRequest.adUnitCode;
const timeout = config.getConfig('bidderTimeout');
Expand Down

0 comments on commit 303f0e3

Please sign in to comment.