Skip to content

Commit

Permalink
fix setting currency
Browse files Browse the repository at this point in the history
  • Loading branch information
ecdrsvc committed Sep 8, 2023
1 parent 9d7c529 commit f12bd30
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adapters/mabidder/mabidder.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ func (a *adapter) MakeBids(request *openrtb2.BidRequest, requestData *adapters.R
BidType: openrtb_ext.BidType(maBidResp.MediaType),
}
bidResponse.Bids = append(bidResponse.Bids, b)
if bidResponse.Currency == "" {
if maBidResp.Currency != "" {
bidResponse.Currency = maBidResp.Currency
}
}
Expand Down

0 comments on commit f12bd30

Please sign in to comment.