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

drop support for userId configs with the usersync config object, pe… #5427

Merged
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
4 changes: 2 additions & 2 deletions modules/userId/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -570,8 +570,8 @@ export function init(config) {
}
// listen for config userSyncs to be set
config.getConfig(conf => {
// Note: support for both 'userSync' and 'usersync' will be deprecated with Prebid.js 3.0
const userSync = conf.userSync || conf.usersync;
// Note: support for 'usersync' was dropped as part of Prebid.js 4.0
const userSync = conf.userSync;
smenzer marked this conversation as resolved.
Show resolved Hide resolved
if (userSync && userSync.userIds) {
configRegistry = userSync.userIds;
syncDelay = utils.isNumber(userSync.syncDelay) ? userSync.syncDelay : DEFAULT_SYNC_DELAY;
Expand Down