From 82f8b135bdb960523c47015318d2d67c0d37615e Mon Sep 17 00:00:00 2001 From: DebaucheryLibrarian Date: Mon, 12 Jan 2026 01:38:17 +0100 Subject: [PATCH] Only using ID part of URL as entry ID for Cherry Pimps to ensure backward compatability. --- src/scrapers/cherrypimps.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/scrapers/cherrypimps.js b/src/scrapers/cherrypimps.js index f4787cfc..e71d06a1 100755 --- a/src/scrapers/cherrypimps.js +++ b/src/scrapers/cherrypimps.js @@ -13,7 +13,7 @@ function scrapeAll(scenes) { const { pathname } = new URL(url); release.url = url; - release.entryId = pathname.match(/\/trailers\/(.*).html/)[1]; + release.entryId = pathname.match(/\/trailers\/(\d+).*.html/)[1]; release.title = query.content('.item-title a'); @@ -50,7 +50,7 @@ function scrapeScene({ query }, url, _channel, baseRelease) { const release = { url }; const { pathname } = new URL(url); - release.entryId = pathname.match(/\/trailers\/(.*).html/)[1]; + release.entryId = pathname.match(/\/trailers\/(\d+).*.html/)[1]; release.title = query.content('.item-title h1'); release.description = query.content('.update-info-block p');