diff --git a/files/assets/emojis.json b/files/assets/emojis.json index c8edfdabc..397e6237d 100644 --- a/files/assets/emojis.json +++ b/files/assets/emojis.json @@ -783,6 +783,7 @@ {"name":"tracemad","class":"Sets"}, {"name":"tracesad","class":"Sets"}, + {"name":"grillcastyes", "tags":["podcast", "chad"],"class":"Misc"}, {"name":"ivoted", "tags":["democracy", "spider"],"class":"Misc"}, {"name":"hapyday", "tags":["happyday", "wholesome", "smile"],"class":"Misc"}, {"name":"froth", "tags":["froth", "seethe", "angry", "ugh", "frothing", "sneed"],"class":"Misc"}, diff --git a/files/assets/images/emojis/grillcastyes.webp b/files/assets/images/emojis/grillcastyes.webp new file mode 100644 index 000000000..2df74ad8e Binary files /dev/null and b/files/assets/images/emojis/grillcastyes.webp differ diff --git a/files/helpers/const.py b/files/helpers/const.py index 7e42a189e..901e5cf7c 100644 --- a/files/helpers/const.py +++ b/files/helpers/const.py @@ -1010,8 +1010,7 @@ approved_embed_hosts = { 'substackcdn.com', '9gag.com', 'ifunny.co', - 'wixmp.com', - 'marsey.cat' + 'wixmp.com' } diff --git a/files/helpers/sanitize.py b/files/helpers/sanitize.py index be0313092..c6591fbad 100644 --- a/files/helpers/sanitize.py +++ b/files/helpers/sanitize.py @@ -446,8 +446,7 @@ def normalize_url(url): .replace("https://streamable.com/", "https://streamable.com/e/") \ .replace("https://streamable.com/e/e/", "https://streamable.com/e/") \ .replace("https://search.marsey.cat/#", "https://camas.unddit.com/#") \ - .replace("https://imgur.com/", "https://i.imgur.com/") \ - .replace("https://kiwifarms.net/", "https://kiwifarms.ru/") + .replace("https://imgur.com/", "https://i.imgur.com/") url = imgur_regex.sub(r'\1_d.webp?maxwidth=9999&fidelity=high', url) url = giphy_regex.sub(r'\1.webp', url)