From bd8deeb44e00cb9f868ee45e87cf6fc274aeb4c7 Mon Sep 17 00:00:00 2001 From: Logan Cusano Date: Sun, 6 Jul 2025 19:34:27 -0400 Subject: [PATCH] Fix typo in the presence endpoint --- app/routers/op25_controller.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/routers/op25_controller.py b/app/routers/op25_controller.py index 8d1bcc0..0346109 100644 --- a/app/routers/op25_controller.py +++ b/app/routers/op25_controller.py @@ -114,8 +114,8 @@ def create_op25_router(bot_manager: DiscordBotManager): except Exception as e: raise HTTPException(status_code=500, detail=str(e)) - @router.post("/update-prensece") - async def update_prensece(): + @router.post("/update-presence") + async def update_presence(): current_system = get_current_system_from_config() if not current_system: raise HTTPException(status_code=500, detail="Unable to get current system.")