aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/services/api/api.service.js8
1 files 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))