Skip to content

Commit

Permalink
use jsonutil instead of json
Browse files Browse the repository at this point in the history
  • Loading branch information
MishelleBit authored Dec 10, 2024
1 parent cbe75ab commit 7c84694
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion adapters/flipp/flipp.go
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ func (a *adapter) MakeBids(request *openrtb2.BidRequest, requestData *adapters.R
if err != nil {
return nil, []error{fmt.Errorf("flipp params not found. %v", err)}
}
err = json.Unmarshal(params, &flippExtParams)
err = jsonutil.Unmarshal(params, &flippExtParams)
if err != nil {
return nil, []error{fmt.Errorf("unable to extract flipp params. %v", err)}
}
Expand Down

0 comments on commit 7c84694

Please sign in to comment.