Fixed shoot ID in update query.

This commit is contained in:
DebaucheryLibrarian
2026-02-01 01:43:51 +01:00
parent 53593947dd
commit b61bc1ad3b

View File

@@ -436,13 +436,13 @@ 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), shoot_id = COALESCE(new.shoot_id, 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,
updated_at = NOW() updated_at = NOW()
FROM json_to_recordset(:scenes) FROM json_to_recordset(:scenes)
AS new(id int, url text, date timestamptz, entity json, title text, description text, duration integer, comment text, deep boolean) AS new(id int, url text, date timestamptz, entity json, title text, description text, shoot_id text, duration integer, comment text, deep boolean)
WHERE releases.id = new.id WHERE releases.id = new.id
`, { `, {
scenes: JSON.stringify(curatedDuplicateReleases), scenes: JSON.stringify(curatedDuplicateReleases),