Skip to content

Commit b193fb0

Browse files
Fix: Adm is not having full response
1 parent 0430c40 commit b193fb0

File tree

1 file changed

+2
-2
lines changed
  • modules/pubmatic/openwrap/sdk/unitylevelplay

1 file changed

+2
-2
lines changed

modules/pubmatic/openwrap/sdk/unitylevelplay/response.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ func ApplyUnityLevelPlayResponse(rctx models.RequestCtx, bidResponse *openrtb2.B
2828
return bidResponse
2929
}
3030

31-
updatedResponse := openrtb2.BidResponse{
31+
*bidResponse = openrtb2.BidResponse{
3232
ID: bidResponse.ID,
3333
BidID: bidResponse.SeatBid[0].Bid[0].ID,
3434
Cur: bidResponse.Cur,
@@ -39,7 +39,7 @@ func ApplyUnityLevelPlayResponse(rctx models.RequestCtx, bidResponse *openrtb2.B
3939
},
4040
}
4141

42-
return &updatedResponse
42+
return bidResponse
4343
}
4444

4545
func SetUnityLevelPlayResponseReject(rctx models.RequestCtx, bidResponse *openrtb2.BidResponse) bool {

0 commit comments

Comments
 (0)