mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-06 02:50:54 +01:00
Improve api/status
This commit is contained in:
parent
549cb9cd7b
commit
18b041697c
1 changed files with 6 additions and 4 deletions
|
@ -227,11 +227,13 @@ export const statusAPI = async (
|
||||||
return { code: 404, message: 'NOT_FOUND' };
|
return { code: 404, message: 'NOT_FOUND' };
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Commented this the part below out for now since it seems like atm this check doesn't actually do anything */
|
||||||
|
|
||||||
/* Tweets object is completely missing, smells like API failure */
|
/* Tweets object is completely missing, smells like API failure */
|
||||||
if (typeof conversation?.globalObjects?.tweets === 'undefined') {
|
// if (typeof conversation?.globalObjects?.tweets === 'undefined') {
|
||||||
writeDataPoint(event, language, wasMediaBlockedNSFW, 'API_FAIL', flags);
|
// writeDataPoint(event, language, wasMediaBlockedNSFW, 'API_FAIL', flags);
|
||||||
return { code: 500, message: 'API_FAIL' };
|
// return { code: 500, message: 'API_FAIL' };
|
||||||
}
|
// }
|
||||||
|
|
||||||
/* If we have no idea what happened then just return API error */
|
/* If we have no idea what happened then just return API error */
|
||||||
writeDataPoint(event, language, wasMediaBlockedNSFW, 'API_FAIL', flags);
|
writeDataPoint(event, language, wasMediaBlockedNSFW, 'API_FAIL', flags);
|
||||||
|
|
Loading…
Add table
Reference in a new issue