Fix typo in the presence endpoint
All checks were successful
release-tag / release-image (push) Successful in 1h15m13s
Lint / lint (push) Successful in 11s

This commit is contained in:
Logan Cusano
2025-07-06 19:34:27 -04:00
parent 7f455f427e
commit bd8deeb44e

View File

@@ -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.")