Fix saving config

This commit is contained in:
Nicolas Mowen 2024-09-26 10:00:07 -06:00
parent a6ccb37683
commit 8a49a87a7f

View File

@ -166,8 +166,8 @@ def config_raw():
@router.post("/config/save")
def config_save(save_option: str, body: Any = Body()):
new_config = body
def config_save(save_option: str, body: Any = Body(media_type="text/plain")):
new_config = body.decode()
if not new_config:
return JSONResponse(