Redirect Favicon requests to Twitter

This commit is contained in:
dangered wolf 2022-08-20 15:32:04 -04:00
parent a0e61c6807
commit 1e637b064d
No known key found for this signature in database
GPG key ID: 41E4D37680ED8B58

View file

@ -251,6 +251,11 @@ export const cacheWrapper = async (
});
}
/* Redirect Favicon to Twitter's */
if (cacheUrl.pathname === '/favicon.ico') {
return Response.redirect(`${Constants.TWITTER_ROOT}/favicon.ico`, 302);
}
/* Some TwitFix APIs will never be available in FixTweet for privacy or
design choice reasons.