Compare commits
2 Commits
277a06c3de
...
0500bdee2b
Author | SHA1 | Date |
---|---|---|
|
0500bdee2b | |
|
e9a1df9123 |
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "traxxx",
|
||||
"version": "1.231.10",
|
||||
"version": "1.231.11",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "traxxx",
|
||||
"version": "1.231.10",
|
||||
"version": "1.231.11",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"@casl/ability": "^5.2.2",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "traxxx",
|
||||
"version": "1.231.10",
|
||||
"version": "1.231.11",
|
||||
"description": "All the latest porn releases in one place",
|
||||
"main": "src/app.js",
|
||||
"scripts": {
|
||||
|
|
|
@ -14,7 +14,7 @@ function scrapeAll(scenes) {
|
|||
const { origin, pathname, searchParams } = new URL(url);
|
||||
|
||||
release.url = `${origin}${pathname}`;
|
||||
release.shootId = pathname.match(/((LA)|(LT)|(MA)|(MD)|(MM)|(MS)|(MT)|(RR))[\w-]+/)?.[0]; // pathname sometimes contains other text, match at least two letters to prevent false positives
|
||||
release.shootId = pathname.match(/((LA)|(LT)|(MA)|(MD)|(MM)|(MS)|(MT)|(RR))\w*-\w+((EP)?\d+)?/)?.[0]; // pathname sometimes contains other text, match at least two letters to prevent false positives
|
||||
|
||||
release.actors = searchParams.get('models_name')?.split(',').map((actor) => {
|
||||
const [han, english] = actor.split('/').map((name) => name.trim());
|
||||
|
|
|
@ -47,8 +47,6 @@ async function curateReleaseEntry(release, batchId, existingRelease, type = 'sce
|
|||
updated_batch_id: batchId,
|
||||
};
|
||||
|
||||
console.log(curatedRelease);
|
||||
|
||||
if (release.id) {
|
||||
// release is updated
|
||||
curatedRelease.id = release.id;
|
||||
|
|
Loading…
Reference in New Issue