From c2c7e12aadda0ca78f1b0e3789d19bdb6784d89f Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Wed, 27 Mar 2019 22:18:43 +0200 Subject: [PATCH] review/remove error hiding --- src/services/api/api.service.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/services/api/api.service.js b/src/services/api/api.service.js index 70aeb2a9..052a46dc 100644 --- a/src/services/api/api.service.js +++ b/src/services/api/api.service.js @@ -423,7 +423,7 @@ const favorite = ({ id, credentials }) => { if (response.ok) { return response.json() } else { - return {} + throw new Error('Error favoriting post') } }) .then((data) => parseStatus(data)) @@ -438,7 +438,7 @@ const unfavorite = ({ id, credentials }) => { if (response.ok) { return response.json() } else { - return {} + throw new Error('Error removing favorite') } }) .then((data) => parseStatus(data)) @@ -453,7 +453,7 @@ const retweet = ({ id, credentials }) => { if (response.ok) { return response.json() } else { - return {} + throw new Error('Error repeating post') } }) .then((data) => parseStatus(data)) @@ -468,7 +468,7 @@ const unretweet = ({ id, credentials }) => { if (response.ok) { return response.json() } else { - return {} + throw new Error('Error removing repeat') } }) .then((data) => parseStatus(data))