Skip to content

Commit

Permalink
Fix: Revert JSON lib used to prepare /bidders/params response (#3300)
Browse files Browse the repository at this point in the history
  • Loading branch information
bsardo authored Nov 15, 2023
1 parent f52dbb1 commit 180eb41
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion router/router.go
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ func newJsonDirectoryServer(schemaDirectory string, validator openrtb_ext.Bidder
data[aliasName] = bidderData
}

response, err := jsonutil.Marshal(data)
response, err := json.Marshal(data)
if err != nil {
glog.Fatalf("Failed to marshal bidder param JSON-schema: %v", err)
}
Expand Down

0 comments on commit 180eb41

Please sign in to comment.