Allow false_positive to be null to fix Frigate 0.11 compatibility.

This commit is contained in:
Dermot Duffy
2022-05-18 21:20:23 -07:00
parent 51875ebda1
commit af5ec0f8be
2 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -1221,7 +1221,7 @@ export const frigateBrowseMediaSourceSchema: z.ZodSchema<BrowseMediaSource> = z.
event: z.object({
camera: z.string(),
end_time: z.number().nullable(),
false_positive: z.boolean(),
false_positive: z.boolean().nullable(),
has_clip: z.boolean(),
has_snapshot: z.boolean(),
id: z.string(),