Added shoot ID to scene update query.

This commit is contained in:
DebaucheryLibrarian 2026-02-01 01:39:48 +01:00
parent c083c4e6d4
commit 6b40a0da5e
1 changed files with 1 additions and 0 deletions

View File

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