From 1d2972cdeeb96a10af6ab64144d95237b0e3454b Mon Sep 17 00:00:00 2001 From: H0llyW00dzZ Date: Thu, 1 Feb 2024 18:44:41 +0700 Subject: [PATCH] Fix [UI/UX] [Emoji] Update CDN (#238) - [+] fix(emoji.tsx): update CDN url from 'cdn.jsdelivr.net' to 'fastly.jsdelivr.net' --- app/components/emoji.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/emoji.tsx b/app/components/emoji.tsx index 6738a38331e..02c1fe46e12 100644 --- a/app/components/emoji.tsx +++ b/app/components/emoji.tsx @@ -22,7 +22,7 @@ export function getEmojiUrl(unified: string, style: EmojiStyle) { // Whoever owns this Content Delivery Network (CDN), I am using your CDN to serve emojis // Old CDN broken, so I had to switch to this one // Author: https://github.com/H0llyW00dzZ - return `https://cdn.jsdelivr.net/npm/${emojiDataSource}/img/${emojiStyle}/64/${unified}.png`; + return `https://fastly.jsdelivr.net/npm/${emojiDataSource}/img/${emojiStyle}/64/${unified}.png`; } export function debounce(func: Function, delay: number) {