From ec55714ed9849361d99da1698807736845b48240 Mon Sep 17 00:00:00 2001 From: Nick Mowen Date: Mon, 27 Feb 2023 07:57:39 -0700 Subject: [PATCH] Sort sub labels to ensure consistent list --- frigate/http.py | 1 + 1 file changed, 1 insertion(+) diff --git a/frigate/http.py b/frigate/http.py index 4060295e1..01df6ed8a 100644 --- a/frigate/http.py +++ b/frigate/http.py @@ -333,6 +333,7 @@ def get_sub_labels(): if not (part.strip()) in sub_labels: sub_labels.append(part.strip()) + sub_labels.sort() return jsonify(sub_labels)