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');