fix(scraper): use false instead of null for image_verified on insert

This commit is contained in:
Rene Fichtmueller 2026-04-05 12:15:10 +02:00
parent 308cf8e774
commit 1434037d29

View File

@ -119,7 +119,7 @@ export async function findOrCreateScrapedTransceiver(params: {
params.wavelengths || "", params.wavelengths || "",
params.category || "DataCenter", params.category || "DataCenter",
params.imageUrl || null, params.imageUrl || null,
params.imageUrl ? true : null, params.imageUrl ? true : false,
] ]
); );
return result.rows[0].id; return result.rows[0].id;