src/pkg/ibex: fix dropped error (#907)

This commit is contained in:
Lars Lehtonen 2022-04-12 19:43:32 -07:00 committed by GitHub
parent d6d588c5aa
commit a20e19922e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -103,9 +103,10 @@ func (i *Ibex) do() error {
var req *http.Request
var err error
var bs []byte
if i.inValue != nil {
bs, err := json.Marshal(i.inValue)
bs, err = json.Marshal(i.inValue)
if err != nil {
return err
}