From 8a39f422551a41e64b3c44b8e6fe758c2f856391 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 6ac46f429..e7dc829ba 100644 --- a/frigate/http.py +++ b/frigate/http.py @@ -625,7 +625,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"