From 9b800a45e3cb728ce39486d77561a140318e8d7c Mon Sep 17 00:00:00 2001 From: Nicolas Mowen Date: Tue, 10 Mar 2026 12:38:51 -0600 Subject: [PATCH] Correctly send topic with role value --- frigate/video.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frigate/video.py b/frigate/video.py index 112844543..13d0cb91e 100755 --- a/frigate/video.py +++ b/frigate/video.py @@ -451,7 +451,7 @@ class CameraWatchdog(threading.Thread): for role in p["roles"]: self.requestor.send_data( - f"{self.config.name}/status/{role}", "offline" + f"{self.config.name}/status/{role.value}", "offline" ) p["logpipe"].dump()