revid: using NewJSONDecoder rather than newJsonDecoder to be consistent with changes in iot

This commit is contained in:
saxon 2018-12-14 16:58:02 +10:30
parent fbdce669e7
commit c7f55c3c43
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ func (s *httpSender) send() error {
// extractMeta looks at a reply at extracts any time or location data - then used
// to update time and location information in the mpegts encoder.
func (s *httpSender) extractMeta(r string) error {
dec, err := netsender.NewJsonDecoder(r)
dec, err := netsender.NewJSONDecoder(r)
if err != nil {
return nil
}