From 5b93eb413be757e5de680a8e6dc20659237ee1f2 Mon Sep 17 00:00:00 2001 From: KoloMl Date: Sat, 9 Aug 2025 15:35:36 +0400 Subject: [PATCH] Derpibooru: Different list of black-listed tags --- src/config/tags.ts | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/src/config/tags.ts b/src/config/tags.ts index 6cfea79..ccef91e 100644 --- a/src/config/tags.ts +++ b/src/config/tags.ts @@ -1,4 +1,4 @@ -export const tagsBlacklist: string[] = [ +export const tagsBlacklist: string[] = (__CURRENT_SITE__ === 'furbooru' ? [ "anthro art", "anthro artist", "anthro cute", @@ -63,4 +63,21 @@ export const tagsBlacklist: string[] = [ "tagme", "upvotes galore", "wall of faves" -]; +] : [ + "tagme", + "tag me", + "not tagged", + "no tag", + "notag", + "notags", + "upvotes galore", + "downvotes galore", + "wall of faves", + "drama in the comments", + "drama in comments", + "tag needed", + "paywall", + "cringeworthy", + "solo oc", + "tag your shit" +]);