From ff45b6dbe129872557d38fc8810b2f6aa889adf5 Mon Sep 17 00:00:00 2001 From: Nick Mowen Date: Thu, 10 Nov 2022 06:35:40 -0700 Subject: [PATCH] Fix bad if statement --- frigate/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/http.py b/frigate/http.py index efc0f3cbc..932bee229 100644 --- a/frigate/http.py +++ b/frigate/http.py @@ -630,7 +630,7 @@ def ffprobe(camera_name): output += f"{input.roles}\n" ffprobe = ffprobe_stream(input.path) - if output: + if ffprobe: output += f"{ffprobe}\n" else: output += "error getting stream\n"