Skip to content

Commit

Permalink
Fixed incorrect assignment made to Bid
Browse files Browse the repository at this point in the history
  • Loading branch information
freemmy committed Sep 24, 2024
1 parent 8a597e3 commit 457a76d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion adapters/silvermob/silvermob.go
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,8 @@ func (a *SilverMobAdapter) MakeBids(
bidResponse := adapters.NewBidderResponseWithBidsCapacity(1)

for _, sb := range bidResp.SeatBid {
for _, bid := range sb.Bid {
for i := range sb.Bid {
bid := sb.Bid[i]
bidType, err := getBidMediaTypeFromMtype(&bid)

if err != nil {
Expand Down

0 comments on commit 457a76d

Please sign in to comment.