Skip to content

Commit

Permalink
Fix PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
rogerDyl committed Feb 25, 2025
1 parent eff525f commit 10329f0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion adapters/akcelo/akcelo.go
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,8 @@ func extractBids(bidResponse openrtb2.BidResponse) (*adapters.BidderResponse, []
bidderResponse := adapters.NewBidderResponseWithBidsCapacity(5)
var errs []error
for _, seat := range bidResponse.SeatBid {
for _, bid := range seat.Bid {
for i := range seat.Bid {
bid := seat.Bid[i]
bidType, err := getBidType(&bid)
if err != nil {
errs = append(errs, err)
Expand Down

0 comments on commit 10329f0

Please sign in to comment.