You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"[Blue Iris] Incomplete request. Your alert action is not sending the ALERT_PATH and ALERT_CLIP macros. These values are needed for BI integration. See readme for more info."
227
+
);
228
+
}
229
+
212
230
constresult=awaitdbClient.query(
213
231
`WITH new_plate AS (
214
232
INSERT INTO plates (plate_number)
@@ -222,9 +240,10 @@ export async function POST(req) {
222
240
image_path,
223
241
thumbnail_path,
224
242
timestamp,
225
-
camera_name
243
+
camera_name,
244
+
bi_path
226
245
)
227
-
SELECT $1, $2, $3, $4, $5, $6
246
+
SELECT $1, $2, $3, $4, $5, $6, $7
228
247
WHERE NOT EXISTS (
229
248
SELECT 1 FROM plate_reads
230
249
WHERE plate_number = $1 AND timestamp = $5
@@ -239,6 +258,7 @@ export async function POST(req) {
0 commit comments