mirror of
https://github.com/blakeblackshear/frigate.git
synced 2024-11-21 19:07:46 +01:00
Fix saving config (#13985)
This commit is contained in:
parent
35a4460334
commit
4a1da3ebc5
@ -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(
|
||||
|
Loading…
Reference in New Issue
Block a user