diff --git a/packages/api/src/utils/parser.ts b/packages/api/src/utils/parser.ts index 05f6df6b5..e3abd0e6d 100644 --- a/packages/api/src/utils/parser.ts +++ b/packages/api/src/utils/parser.ts @@ -627,7 +627,7 @@ export const fetchFavicon = async ( ): Promise => { try { // get the correct url if it's a redirect - const response = await axios.head(url) + const response = await axios.head(url, { timeout: 5000 }) const realUrl = response.request.res.responseUrl const domain = new URL(realUrl).hostname return `https://api.faviconkit.com/${domain}/32`