From 9648f9b9adbfbb3a6bdabbf8fa975fa6ac7f9655 Mon Sep 17 00:00:00 2001 From: Sergey Krashevich Date: Mon, 26 Jun 2023 22:17:06 +0300 Subject: [PATCH] fix TypeError in manual event creation --- frigate/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/http.py b/frigate/http.py index b4813c1f2..dcac57a76 100644 --- a/frigate/http.py +++ b/frigate/http.py @@ -882,7 +882,7 @@ def create_event(camera_name, label): { "success": True, "message": "Successfully created event.", - "event_id": event_id, + "event_id": event_id.decode('utf-8'), }, 200, )