From e8c342e1624fd93fbebdd6b56a84488426d9d2a2 Mon Sep 17 00:00:00 2001 From: Patrick Date: Wed, 9 Jun 2021 22:15:48 -0600 Subject: [PATCH] Update http.py comparison of constants, use T/F instead --- frigate/http.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frigate/http.py b/frigate/http.py index fff246195..9575ab707 100644 --- a/frigate/http.py +++ b/frigate/http.py @@ -156,7 +156,7 @@ def events_summary(): clauses.append((Event.has_snapshot == has_snapshot)) if len(clauses) == 0: - clauses.append((1 == 1)) + clauses.append((True)) groups = ( Event.select( @@ -332,7 +332,7 @@ def events(): excluded_fields.append(Event.thumbnail) if len(clauses) == 0: - clauses.append((1 == 1)) + clauses.append((True)) events = ( Event.select()