Fix JSON unmarshal
parent
9aab54619a
commit
6fc525ce5e
4
entry.go
4
entry.go
|
@ -3,9 +3,9 @@ package main
|
||||||
import (
|
import (
|
||||||
"bufio"
|
"bufio"
|
||||||
"bytes"
|
"bytes"
|
||||||
|
"encoding/json"
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
"gopkg.in/yaml.v2"
|
|
||||||
"io/ioutil"
|
"io/ioutil"
|
||||||
"math/rand"
|
"math/rand"
|
||||||
"net/http"
|
"net/http"
|
||||||
|
@ -55,7 +55,7 @@ func CreateEntry(contentType ContentType, r *http.Request) (*Entry, error) {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
parsedMfItem := &MicroformatItem{}
|
parsedMfItem := &MicroformatItem{}
|
||||||
err = yaml.Unmarshal([]byte(bodyString), &parsedMfItem)
|
err = json.Unmarshal([]byte(bodyString), &parsedMfItem)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, errors.New("failed to parse Json")
|
return nil, errors.New("failed to parse Json")
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue