From de66243ea03670e1a57b928e20c52c00fd469829 Mon Sep 17 00:00:00 2001 From: Aevann1 Date: Fri, 15 Jul 2022 03:25:04 +0200 Subject: [PATCH] show marsey authors in deux --- files/routes/static.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/routes/static.py b/files/routes/static.py index 8c4b155ba..928056b6c 100644 --- a/files/routes/static.py +++ b/files/routes/static.py @@ -37,7 +37,7 @@ def marsey_list(): if EMOJI_MARSEYS: emojis = [{ "name": emoji.name, - "author": author if SITE_NAME == 'rDrama' or author == "anton-d" else None, + "author": author if SITE in ('rdrama.net','devrama.xyz','deuxrama.net') or author == "anton-d" else None, # yikes, I don't really like this DB schema. Next time be better "tags": emoji.tags.split(" ") + [emoji.name[len("marsey"):] \ if emoji.name.startswith("marsey") else emoji.name],