chore: Use integrationError instead of automatischError

This commit is contained in:
Faruk AYDIN
2022-09-26 19:12:07 +03:00
parent 8826125845
commit 953a031ba6
2 changed files with 19 additions and 10 deletions

View File

@@ -53,8 +53,8 @@ export default class SearchTweets {
headers: { ...authHeader },
});
if (response.automatischError) {
tweets.error = response.automatischError;
if (response.integrationError) {
tweets.error = response.integrationError;
return tweets;
}