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