From 4e5fca39682faa25baeda70647a5a872b81860ba Mon Sep 17 00:00:00 2001 From: DariusIII Date: Wed, 10 Dec 2025 13:52:49 +0100 Subject: [PATCH] Update adult markers --- app/Services/Categorization/ReleaseContext.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app/Services/Categorization/ReleaseContext.php b/app/Services/Categorization/ReleaseContext.php index 4b4d40afa..ea2f1b868 100644 --- a/app/Services/Categorization/ReleaseContext.php +++ b/app/Services/Categorization/ReleaseContext.php @@ -48,13 +48,16 @@ class ReleaseContext return (bool) preg_match($pattern, $this->groupName); } + /** + * Check if this release has adult/XXX markers. + */ /** * Check if this release has adult/XXX markers. */ public function hasAdultMarkers(): bool { - // Check for explicit XXX markers and common adult keywords - if (preg_match('/\b(XXX|Porn|Anal|Brazzers|BangBros|Bangbros|NaughtyAmerica|RealityKings|Tushy|Vixen|Blacked|OnlyFans|MetArt|JoyMii|Creampie|MP4-XXX|PureTaboo|LadyLyne|TeamSkeet|GirlsWay|EvilAngel|Kink|FakeHub|FakeTaxi|SexArt|Nubiles|Anilos|Defloration|Deeper|Bellesa|Twistys|Mofos|MissaX|LegalPorno|AnalVids|JAV|Hentai|RoccoSiffredi)\b/i', $this->releaseName)) { + // Check for explicit XXX markers and common adult keywords/studios + if (preg_match('/\b(XXX|Porn|Anal|Brazzers|BangBros|Bangbros|NaughtyAmerica|RealityKings|Tushy|Vixen|Blacked|OnlyFans|MetArt|JoyMii|Creampie|MP4-XXX|PureTaboo|LadyLyne|TeamSkeet|GirlsWay|EvilAngel|Kink|FakeHub|FakeTaxi|SexArt|Nubiles|Defloration|Deeper|Bellesa|Twistys|Mofos|MissaX|LegalPorno|AnalVids|JAV|Hentai|RoccoSiffredi|DivineBitches|Device[._ -]?Bondage|Hogtied|Wired[._ -]?Pussy|Fucking[._ -]?Machines|Ultimate[._ -]?Surrender|Public[._ -]?Disgrace|Sex[._ -]?And[._ -]?Submission|Bound[._ -]?Gang[._ -]?Bangs|Electro[._ -]?Sluts|Whipped[._ -]?Ass|TS[._ -]?Seduction|Infernal[._ -]?Restraints|Sexually[._ -]?Broken)\b/i', $this->releaseName)) { return true; }