Compare commits

..

No commits in common. "003aff49f957f2ab80e649c2e826d12a2b0172b1" and "756387328266c756b23fe704ff7320eb88d4f302" have entirely different histories.

3 changed files with 5 additions and 7 deletions

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{
"name": "traxxx",
"version": "1.245.26",
"version": "1.245.25",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "traxxx",
"version": "1.245.26",
"version": "1.245.25",
"license": "ISC",
"dependencies": {
"@aws-sdk/client-s3": "^3.458.0",

View File

@ -1,6 +1,6 @@
{
"name": "traxxx",
"version": "1.245.26",
"version": "1.245.25",
"description": "All the latest porn releases in one place",
"main": "src/app.js",
"scripts": {

View File

@ -31,11 +31,9 @@ async function fetchScenes() {
entities.id as channel_id,
entities.slug as channel_slug,
entities.name as channel_name,
entities.alias as channel_aliases,
parents.id as network_id,
parents.slug as network_slug,
parents.name as network_name,
parents.alias as network_aliases,
studios.id as studio_id,
studios.slug as studio_slug,
studios.name as studio_name,
@ -160,10 +158,10 @@ async function init() {
shoot_id: scene.shoot_id || undefined,
channel_id: scene.channel_id,
channel_slug: scene.channel_slug,
channel_name: [].concat(scene.channel_name, scene.channel_aliases).join(' '),
channel_name: scene.channel_name,
network_id: scene.network_id || undefined,
network_slug: scene.network_slug || undefined,
network_name: [].concat(scene.network_name, scene.network_aliases).join(' ') || undefined,
network_name: scene.network_name || undefined,
studio_id: scene.studio_id || undefined,
studio_slug: scene.studio_slug || undefined,
studio_name: scene.studio_name || undefined,