From 351fd8def0fce21e7edb0675a84a4f8f4958c63a Mon Sep 17 00:00:00 2001 From: DebaucheryLibrarian Date: Thu, 22 Jan 2026 01:25:24 +0100 Subject: [PATCH] Fixed Naughty America locator resolving to multiple elements on Tonight's Girlfriend, removed stray console log. --- src/scrapers/naughtyamerica.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/scrapers/naughtyamerica.js b/src/scrapers/naughtyamerica.js index ab7856e4..5772622c 100755 --- a/src/scrapers/naughtyamerica.js +++ b/src/scrapers/naughtyamerica.js @@ -119,15 +119,13 @@ function scrapeScene({ query }, { url }) { query.exists('//a[contains(@class, "label-hd") and contains(text(), "HD")]') && 720, ].filter(Boolean); - console.log(release); - return release; } async function fetchScene(url, _channel) { const res = await unprint.browserRequest(url, { async control(ctx) { - await ctx.locator('.scene-info, .scene').hover({ trial: true, timeout: 30000 }); // wait for trailer to initialize + await ctx.locator('.scene-info, .scene').first().hover({ trial: true, timeout: 30000 }); // wait for trailer to initialize }, });