From 85a0a8548abdb3fdaefdc701c90366602767bbcd Mon Sep 17 00:00:00 2001 From: David Germain Date: Fri, 28 Jun 2024 08:40:07 +0200 Subject: [PATCH] chore: disable url preview (#3705) --- functions/src/Integrations/firebase-discord.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/src/Integrations/firebase-discord.ts b/functions/src/Integrations/firebase-discord.ts index 772f99921..48ad85671 100644 --- a/functions/src/Integrations/firebase-discord.ts +++ b/functions/src/Integrations/firebase-discord.ts @@ -95,7 +95,7 @@ export const notifyResearchUpdatePublished = functions const response = await axios.post(DISCORD_WEBHOOK_URL, { content: `📝 New update from ${author} in their research: ${title}\n` + - `Learn about it here: ${SITE_URL}/research/${slug}`, + `Learn about it here: <${SITE_URL}/research/${slug}>`, }) handleResponse(response) } catch (error) {