Fix downloaded images volume on docker

This commit is contained in:
Zoe Roux
2025-12-01 20:49:35 +01:00
parent f1c2724a7b
commit 96ac331903
3 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -139,9 +139,9 @@ const processOne = record("download", async () => {
const column = sql.raw(img.column);
await tx.execute(sql`
update ${table} set ${column} = ${ret}
where ${column}->'id' = ${sql.raw(`'"${img.id}"'::jsonb`)}
`);
update ${table} set ${column} = ${ret}
where ${column}->'id' = ${sql.raw(`'"${img.id}"'::jsonb`)}
`);
await tx.delete(mqueue).where(eq(mqueue.id, item.id));
} catch (err: any) {