From ffec7e2045620a623c9616730d0d50d1143053ba Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Sun, 25 May 2025 23:50:03 -0400 Subject: [PATCH] Update config on OP25 changes via webhook --- app/client.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/client.py b/app/client.py index 444f78e..fbe2d5e 100644 --- a/app/client.py +++ b/app/client.py @@ -151,11 +151,13 @@ async def get_status(websocket, request_id): @command async def op25_start(websocket): await drb_api.start_op25() + client_status['op25_status'] = OP25StatusValues.LISTENING # Stop OP25 @command async def op25_stop(websocket): await drb_api.stop_op25() + client_status['op25_status'] = OP25StatusValues.OFFLINE # Set OP25 Config @command