return 410 not 404 for removed apis

This commit is contained in:
dangered wolf 2023-08-17 22:59:00 -04:00
parent 533695304c
commit 679bfe9abf
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -396,7 +396,7 @@ export const cacheWrapper = async (
) {
return new Response(Strings.TWITFIX_API_SUNSET, {
headers: Constants.RESPONSE_HEADERS,
status: 404
status: 410
});
}