Compare commits

...

2 Commits

Author SHA1 Message Date
DebaucheryLibrarian
53593947dd 1.248.5 2026-02-01 01:39:50 +01:00
DebaucheryLibrarian
6b40a0da5e Added shoot ID to scene update query. 2026-02-01 01:39:48 +01:00
3 changed files with 4 additions and 3 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "traxxx", "name": "traxxx",
"version": "1.248.4", "version": "1.248.5",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "traxxx", "name": "traxxx",
"version": "1.248.4", "version": "1.248.5",
"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.248.4", "version": "1.248.5",
"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

@@ -436,6 +436,7 @@ async function storeScenes(releases, useBatchId) {
entity_id = COALESCE((new.entity->>'id')::integer, releases.entity_id), entity_id = COALESCE((new.entity->>'id')::integer, releases.entity_id),
title = COALESCE(new.title, releases.title), title = COALESCE(new.title, releases.title),
description = COALESCE(new.description, releases.description), description = COALESCE(new.description, releases.description),
shoot_id = COALESCE(new.shootId, releases.shoot_id),
duration = COALESCE(new.duration, releases.duration), duration = COALESCE(new.duration, releases.duration),
comment = COALESCE(new.comment, releases.comment), comment = COALESCE(new.comment, releases.comment),
deep = new.url IS NOT NULL, deep = new.url IS NOT NULL,