diff --git a/modules/emx_digitalBidAdapter.js b/modules/emx_digitalBidAdapter.js index c25c20f2eda2..042251ea0355 100644 --- a/modules/emx_digitalBidAdapter.js +++ b/modules/emx_digitalBidAdapter.js @@ -103,6 +103,22 @@ export const spec = { }); } return emxBidResponses; + }, + getUserSyncs: function (syncOptions) { + const syncs = []; + if (syncOptions.iframeEnabled) { + syncs.push({ + type: 'iframe', + url: '//biddr.brealtime.com/check.html' + }); + } + if (syncOptions.pixelEnabled) { + syncs.push({ + type: 'image', + url: '//edba.brealtime.com/' + }); + } + return syncs; } }; registerBidder(spec);