From a9f64a82a2091a0921fd362730ab20d66fb82ab0 Mon Sep 17 00:00:00 2001 From: boiii Date: Mon, 23 Sep 2019 18:32:47 +0200 Subject: [PATCH] Legalporno title scene ID fix Old regex would fail on some videos e.g. Little Sofi Smile plays with two big cocks AF001 Whitney Wright Gets Punished by Two Big Black Cocks AB015 --- src/scrapers/legalporno.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scrapers/legalporno.js b/src/scrapers/legalporno.js index 3467dd22..08eb7c4c 100644 --- a/src/scrapers/legalporno.js +++ b/src/scrapers/legalporno.js @@ -8,7 +8,7 @@ const { matchTags } = require('../tags'); function extractTitle(originalTitle) { const titleComponents = originalTitle.split(' '); - const sceneIdMatch = titleComponents.slice(-1)[0].match(/(GP|SZ|IV|GIO|RS|TW|MA|FM|SAL|NR|AA|GL|BZ|FS)\d+/); // detect studio prefixes + const sceneIdMatch = titleComponents.slice(-1)[0].match(/(AB|AF|GP|SZ|IV|GIO|RS|TW|MA|FM|SAL|NR|AA|GL|BZ|FS)\d+/); // detect studio prefixes const shootId = sceneIdMatch ? sceneIdMatch[0] : null; const title = sceneIdMatch ? titleComponents.slice(0, -1).join(' ') : originalTitle;