Compare commits

...

2 Commits

Author SHA1 Message Date
DebaucheryLibrarian
003aff49f9 1.245.26 2026-01-13 22:08:43 +01:00
DebaucheryLibrarian
f4c42a3cf5 Appending entity alias to entity names in manticore. 2026-01-13 22:08:41 +01:00
3 changed files with 7 additions and 5 deletions

4
package-lock.json generated
View File

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

View File

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

View File

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