favourites.go
changeset 98 5d803adfc57e
parent 93 d427d8aa75f9
child 120 579912e9d0ef
--- a/favourites.go	Thu Apr 13 00:00:00 2017 +0200
+++ b/favourites.go	Thu Apr 13 00:17:57 2017 +0200
@@ -20,12 +20,10 @@
 	println(r.Body)
 	err = json.Unmarshal([]byte(r.Body), &faves)
 	if err != nil {
-		var res struct {
-			Error string `json:"error"`
-		}
-		err2 := json.Unmarshal([]byte(r.Body), &res)
+		var errorRes Error
+		err2 := json.Unmarshal([]byte(r.Body), &errorRes)
 		if err2 == nil {
-			return faves, fmt.Errorf("%s", res.Error)
+			return faves, fmt.Errorf("%s", errorRes.Text)
 		}
 		return faves, fmt.Errorf("favourites API: %s", err.Error())
 	}