mirror of
https://github.com/CompeyDev/fxtwitter-docker.git
synced 2025-04-05 18:40:56 +01:00
Redirect Favicon requests to Twitter
This commit is contained in:
parent
a0e61c6807
commit
1e637b064d
1 changed files with 5 additions and 0 deletions
|
@ -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.
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue