More descriptive error if /task/get returns invalid JSON

This commit is contained in:
Richard Patel 2019-02-22 20:17:53 +01:00
parent 206ea0e91d
commit 8c5f99d616
No known key found for this signature in database
GPG Key ID: C268B2BBDA2ABECB

View File

@ -40,7 +40,9 @@ func FetchTask() (t *Task, err error) {
t = new(Task)
err = json.NewDecoder(res.Body).Decode(t)
if err != nil { return }
if _, ok := err.(*json.SyntaxError); ok {
return nil, fmt.Errorf("/task/get returned invalid JSON")
} else if err != nil { return }
return
}