From 76877a0f88c64a31bf5b2c725999a9916d3e4021 Mon Sep 17 00:00:00 2001 From: crazycuck <186649905+crazycuck@users.noreply.github.com> Date: Mon, 24 Aug 2026 19:53:44 -0300 Subject: [PATCH] Fix AEBN age-gate cookie and movie selectors The ageGated cookie was set to an empty value, but AEBN now requires ageGated=true to bypass the age gate; an empty value redirected every scrape to /avs/gate and returned no result (runtime error: index out of range [0] with length 0). Also fix the Director selector (the is no longer nested inside ) and the Studio selector (class renamed to section-detail-list-item-studio). --- scrapers/AEBN.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scrapers/AEBN.yml b/scrapers/AEBN.yml index afab2a8f5..ee2247c58 100644 --- a/scrapers/AEBN.yml +++ b/scrapers/AEBN.yml @@ -88,7 +88,7 @@ xPathScrapers: group: Name: //h1[@class="dts-section-page-heading-title"]|//div[@class="dts-section-page-heading-title"]/h1 Director: - selector: //li[@class='section-detail-list-item-director']//span//a + selector: //li[@class='section-detail-list-item-director']//a concat: ", " Duration: //li[@class='section-detail-list-item-duration'][contains(span,"Running Time")]/text() Date: @@ -100,7 +100,7 @@ xPathScrapers: - parseDate: Jan 2, 2006 Synopsis: //div[@class="dts-section-page-detail-description-body"]//text() Studio: - Name: //div[@class='dts-studio-name-wrapper']/a/text() + Name: //li[@class='section-detail-list-item-studio']//a/text() FrontImage: selector: //picture[@class="dts-movie-boxcover-front"]/img/@src postProcess: @@ -119,18 +119,18 @@ driver: Cookies: - Name: "ageGated" Domain: "vod.aebn.com" - Value: "" + Value: "true" Path: "/" - CookieURL: "https://gay.aebn.com" Cookies: - Name: "ageGated" Domain: "gay.aebn.com" - Value: "" + Value: "true" Path: "/" - CookieURL: "https://straight.aebn.com" Cookies: - Name: "ageGated" Domain: "straight.aebn.com" - Value: "" + Value: "true" Path: "/" # Last Updated September 17, 2025