diff --git a/src/server.ts b/src/server.ts index c844425..e619da5 100644 --- a/src/server.ts +++ b/src/server.ts @@ -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.