From 8a42db25d0c5439d3e2a6df3916fe2f281f2c585 Mon Sep 17 00:00:00 2001 From: Nick Mowen Date: Sat, 12 Mar 2022 09:33:30 -0700 Subject: [PATCH] Remove person only check --- frigate/http.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/frigate/http.py b/frigate/http.py index 6387ff8eb..00ffb6840 100644 --- a/frigate/http.py +++ b/frigate/http.py @@ -162,11 +162,6 @@ def set_sub_label(id): jsonify({"success": False, "message": "Event " + id + " not found"}), 404 ) - if event.label != "person": - return make_response( - jsonify({"success": False, "message": "Event " + id + " is not a person event"}), 400 - ) - if request.json: new_sub_label = request.json.get("subLabel", "") else: