From 2d4a0cc5849f99181573076f96f2eb9bcd7adcc8 Mon Sep 17 00:00:00 2001 From: Josh Hawkins <32435876+hawkeye217@users.noreply.github.com> Date: Sun, 14 Sep 2025 11:31:07 -0500 Subject: [PATCH] false_positive endpoint needs to await send_to_plus call (#20069) --- frigate/api/event.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/api/event.py b/frigate/api/event.py index 1ff570b7f..5f426c83f 100644 --- a/frigate/api/event.py +++ b/frigate/api/event.py @@ -1021,7 +1021,7 @@ async def false_positive(request: Request, event_id: str): ) if not event.plus_id: - plus_response = send_to_plus(request, event_id) + plus_response = await send_to_plus(request, event_id) if plus_response.status_code != 200: return plus_response # need to refetch the event now that it has a plus_id