We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 31e69e8 commit 60a28caCopy full SHA for 60a28ca
modules/admaticBidAdapter.js
@@ -104,7 +104,9 @@ export const spec = {
104
height: bid.height,
105
currency: body.cur || 'TRY',
106
netRevenue: true,
107
- ad: bid.party_tag,
+ ad: bid.type == "banner" ? bid.party_tag : undefined,
108
+ vastXml: bid.type == "video" ? bid.party_tag : undefined,
109
+ vastImpUrl: bid.type == "video" ? bid.iurl : undefined,
110
creativeId: bid.creative_id,
111
meta: {
112
advertiserDomains: bid && bid.adomain ? bid.adomain : []
0 commit comments