Skip to content

Commit

Permalink
Ogury Bid Adapter: fix hostname (#7135)
Browse files Browse the repository at this point in the history
* update ogury bidder hostname

* fix test
  • Loading branch information
antoinezaz authored Jul 2, 2021
1 parent 9058600 commit 6a141e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modules/oguryBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { registerBidder } from '../src/adapters/bidderFactory.js';

const BIDDER_CODE = 'ogury';
const DEFAULT_TIMEOUT = 1000;
const BID_HOST = 'https://webmobile.presage.io/api/header-bidding-request';
const BID_HOST = 'https://mweb-hb.presage.io/api/header-bidding-request';

function isBidRequestValid(bid) {
const adUnitSizes = getAdUnitSizes(bid);
Expand Down
2 changes: 1 addition & 1 deletion test/spec/modules/oguryBidAdapter_spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { expect } from 'chai';
import { spec } from 'modules/oguryBidAdapter';
import { deepClone } from 'src/utils.js';

const BID_HOST = 'https://webmobile.presage.io/api/header-bidding-request';
const BID_HOST = 'https://mweb-hb.presage.io/api/header-bidding-request';

describe('OguryBidAdapter', function () {
let bidRequests;
Expand Down

0 comments on commit 6a141e7

Please sign in to comment.