Compare commits
2 Commits
43d85bcd34
...
7f4e4df9e3
Author | SHA1 | Date |
---|---|---|
|
7f4e4df9e3 | |
|
f956f0e112 |
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "traxxx",
|
||||
"version": "1.237.12",
|
||||
"version": "1.237.13",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "traxxx",
|
||||
"version": "1.237.12",
|
||||
"version": "1.237.13",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"@aws-sdk/client-s3": "^3.458.0",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "traxxx",
|
||||
"version": "1.237.12",
|
||||
"version": "1.237.13",
|
||||
"description": "All the latest porn releases in one place",
|
||||
"main": "src/app.js",
|
||||
"scripts": {
|
||||
|
|
Binary file not shown.
After Width: | Height: | Size: 1.4 MiB |
Binary file not shown.
After Width: | Height: | Size: 1.4 MiB |
|
@ -908,7 +908,7 @@ const sites = [
|
|||
},
|
||||
// BANG
|
||||
{
|
||||
name: 'Trickery',
|
||||
name: 'Bang! Trickery',
|
||||
slug: 'bangtrickery',
|
||||
url: 'https://www.bang.com/videos?in=BANG%21+Trickery',
|
||||
parameters: { siteId: 4800 },
|
||||
|
@ -930,20 +930,20 @@ const sites = [
|
|||
parent: 'bang',
|
||||
},
|
||||
{
|
||||
name: 'Surprise',
|
||||
name: 'Bang! Surprise',
|
||||
slug: 'bangsurprise',
|
||||
url: 'https://www.bang.com/videos?in=BANG%21+Surprise',
|
||||
parameters: { siteId: 5000 },
|
||||
parent: 'bang',
|
||||
},
|
||||
{
|
||||
name: 'Adventures',
|
||||
name: 'Bang! Adventures',
|
||||
slug: 'bangadventures',
|
||||
url: 'https://www.bang.com/videos?in=BANG%21+adventures',
|
||||
parent: 'bang',
|
||||
},
|
||||
{
|
||||
name: 'Real Teens',
|
||||
name: 'Bang! Real Teens',
|
||||
slug: 'bangrealteens',
|
||||
alias: ['brealteens'],
|
||||
url: 'https://www.bang.com/videos?in=BANG%21+Real+Teens',
|
||||
|
@ -965,21 +965,21 @@ const sites = [
|
|||
parent: 'bang',
|
||||
},
|
||||
{
|
||||
name: 'Japan',
|
||||
name: 'Bang! Japan',
|
||||
slug: 'bangjapan',
|
||||
url: 'https://www.bang.com/videos?in=BANG%21+Japan',
|
||||
parameters: { siteId: 3079, ignore: true },
|
||||
parent: 'bang',
|
||||
},
|
||||
{
|
||||
name: 'Rammed',
|
||||
name: 'Bang! Rammed',
|
||||
slug: 'bangrammed',
|
||||
url: 'https://www.bang.com/videos?in=BANG%21+Rammed',
|
||||
parameters: { siteId: 4836 },
|
||||
parent: 'bang',
|
||||
},
|
||||
{
|
||||
name: 'Glamkore',
|
||||
name: 'Bang! Glamkore',
|
||||
slug: 'bangglamkore',
|
||||
alias: ['bglamkore'],
|
||||
url: 'https://www.bang.com/videos?in=BANG%21+Glamkore',
|
||||
|
@ -994,7 +994,7 @@ const sites = [
|
|||
parent: 'bang',
|
||||
},
|
||||
{
|
||||
name: 'Real MILFs',
|
||||
name: 'Bang! Real MILFs',
|
||||
slug: 'bangrealmilfs',
|
||||
alias: ['brealmilfs'],
|
||||
url: 'https://www.bang.com/videos?in=BANG%21+Real+Milfs',
|
||||
|
@ -1002,7 +1002,7 @@ const sites = [
|
|||
parent: 'bang',
|
||||
},
|
||||
{
|
||||
name: 'Confessions',
|
||||
name: 'Bang! Confessions',
|
||||
slug: 'bangconfessions',
|
||||
alias: ['bconfessions'],
|
||||
url: 'https://www.bang.com/videos?in=BANG%21+Confessions',
|
||||
|
@ -1010,7 +1010,7 @@ const sites = [
|
|||
parent: 'bang',
|
||||
},
|
||||
{
|
||||
name: 'Casting',
|
||||
name: 'Bang! Casting',
|
||||
slug: 'bangcasting',
|
||||
alias: ['bcasting'],
|
||||
url: 'https://www.bang.com/videos?in=BANG%21+Casting',
|
||||
|
|
|
@ -41,7 +41,9 @@ async function addAlert(alert, sessionUser) {
|
|||
alert.matches?.length > 0 && bulkInsert('alerts_matches', alert.matches.map((match) => ({
|
||||
alert_id: alertId,
|
||||
property: match.property,
|
||||
expression: match.expression,
|
||||
expression: /\/.*\//.test(match.expression)
|
||||
? match.expression.slice(1, -1)
|
||||
: escapeRegexp(match.expression),
|
||||
})), false),
|
||||
alert.stashes?.length > 0 && bulkInsert('alerts_stashes', alert.stashes.map((stashId) => ({
|
||||
alert_id: alertId,
|
||||
|
@ -115,9 +117,7 @@ async function notify(scenes) {
|
|||
|
||||
acc[alertMatch.alert_id].push({
|
||||
property: alertMatch.property,
|
||||
expression: /\/.*\//.test(alertMatch.expression)
|
||||
? new RegExp(alertMatch.expression.slice(1, -1), 'ui')
|
||||
: new RegExp(escapeRegexp(alertMatch.expression), 'ui'),
|
||||
expression: new RegExp(alertMatch.expression, 'ui'),
|
||||
});
|
||||
|
||||
return acc;
|
||||
|
|
Loading…
Reference in New Issue