Skip to content

Commit

Permalink
Update yieldmoBid adapter request url (#1771)
Browse files Browse the repository at this point in the history
  • Loading branch information
cdoher01 authored and dbemiller committed Oct 26, 2017
1 parent 51ffb4e commit 90c66f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/yieldmoBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ var YieldmoAdapter = function YieldmoAdapter() {

function buildYieldmoCall(bids) {
// build our base tag, based on if we are http or https
var ymURI = '//bid.yieldmo.com/exchange/prebid?';
var ymURI = '//ads.yieldmo.com/exchange/prebid?';
var ymCall = document.location.protocol + ymURI;

// Placement specific information
Expand Down
2 changes: 1 addition & 1 deletion test/spec/modules/yieldmoBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ describe('Yieldmo adapter', () => {
});

it('should load a script with passed bid params', () => {
let route = 'http://bid.yieldmo.com/exchange/prebid?';
let route = 'http://ads.yieldmo.com/exchange/prebid?';
let requestParams = parseURL(bidRequestURL).search;
let parsedPlacementParams = JSON.parse(decodeURIComponent(requestParams.p));

Expand Down

0 comments on commit 90c66f2

Please sign in to comment.