Skip to content

Commit

Permalink
Update aniviewBidAdapter.js (prebid#8802)
Browse files Browse the repository at this point in the history
  • Loading branch information
patmmccann authored and jorgeluisrocha committed May 18, 2023
1 parent 316dce7 commit c2336cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/aniviewBidAdapter.js
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ function interpretResponse(serverResponse, bidRequest) {
let xml = new window.DOMParser().parseFromString(xmlStr, 'text/xml');
if (xml && xml.getElementsByTagName('parsererror').length == 0) {
let cpmData = getCpmData(xml);
if (cpmData && cpmData.cpm > 0) {
if (cpmData.cpm > 0) {
bidResponse.requestId = bidRequest.data.bidId;
bidResponse.ad = '';
bidResponse.cpm = cpmData.cpm;
Expand Down

0 comments on commit c2336cd

Please sign in to comment.