diff --git a/frigate/api/app.py b/frigate/api/app.py index aa2c7634c..57c8786bd 100644 --- a/frigate/api/app.py +++ b/frigate/api/app.py @@ -261,13 +261,13 @@ def config_set(request: Request, body: AppConfigSetBody): f.close() try: - update_yaml_from_url(config_file, request.url) + update_yaml_from_url(config_file, str(request.url)) with open(config_file, "r") as f: new_raw_config = f.read() f.close() # Validate the config schema try: - config_obj = FrigateConfig.parse_yaml(new_raw_config) + config = FrigateConfig.parse(new_raw_config) except Exception: with open(config_file, "w") as f: f.write(old_raw_config) @@ -290,10 +290,8 @@ def config_set(request: Request, body: AppConfigSetBody): ) if body.requires_restart == 0: - request.app.frigate_config = FrigateConfig.parse_object( - config_obj, request.app.frigate_config.plus_api - ) + request.app.frigate_config = config return JSONResponse( content=( {