Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Zeta Bid Adapter: bugfix for the possibility to overwrite data with gdpr consent #6967

Merged
merged 5 commits into from
Jun 8, 2021
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
polishing
  • Loading branch information
mwehr-zeta committed Jun 4, 2021
commit 4ec1f53b4f00f92dc6148d811fff6a38461b4ad0
4 changes: 2 additions & 2 deletions modules/zetaBidAdapter.js
Original file line number Diff line number Diff line change
@@ -2,9 +2,9 @@ import * as utils from '../src/utils.js';
import { registerBidder } from '../src/adapters/bidderFactory.js';
import {BANNER} from '../src/mediaTypes.js';
const BIDDER_CODE = 'zeta_global';
const ENDPOINT_URL = 'https://prebid.rfihub.com/prebid';
const USER_SYNC_URL = 'https://p.rfihub.com/cm?pub=44253&in=1';
const PREBID_DEFINER_ID = '44253'
const ENDPOINT_URL = 'https://prebid.rfihub.com/prebid';
const USER_SYNC_URL = 'https://p.rfihub.com/cm?in=1&pub=' + PREBID_DEFINER_ID;
const DEFAULT_CUR = 'USD';
const TTL = 200;
const NET_REV = true;