Skip to content

Commit

Permalink
AOL adapter - add defaults for currency and creative ID until fix iss…
Browse files Browse the repository at this point in the history
…ued server-side (prebid#3068)

* Add AOL defaults for currency and creative ID until fix issued server-side

* Satisfy linter single quotes
  • Loading branch information
kizzard authored and jaiminpanchal27 committed Sep 11, 2018
1 parent db694a0 commit 73e9ef1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/aolBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -387,9 +387,9 @@ export const spec = {
cpm: cpm,
width: bidData.w,
height: bidData.h,
creativeId: bidData.crid,
creativeId: bidData.crid || 0,
pubapiId: response.id,
currency: response.cur,
currency: response.cur || 'USD',
dealId: bidData.dealid,
netRevenue: true,
ttl: bidRequest.ttl
Expand Down

0 comments on commit 73e9ef1

Please sign in to comment.