Skip to content

Commit

Permalink
use jsonutil.Marshal
Browse files Browse the repository at this point in the history
  • Loading branch information
jney committed Jan 15, 2025
1 parent 11e5554 commit 94483f4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions adapters/missena/missena.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package missena

import (
"encoding/json"
"fmt"
"net/http"
"net/url"
Expand Down Expand Up @@ -149,7 +148,7 @@ func (a *adapter) makeRequest(imp openrtb2.Imp, request *openrtb2.BidRequest, re
Version: version.Ver,
}

body, err := json.Marshal(missenaRequest)
body, err := jsonutil.Marshal(missenaRequest)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 94483f4

Please sign in to comment.