fix webcfg
This commit is contained in:
parent
d10bf6bf1d
commit
03c014f414
@ -499,12 +499,11 @@ class WebConfig(plugins.Plugin):
|
|||||||
elif request.method == "POST":
|
elif request.method == "POST":
|
||||||
if path == "save-config":
|
if path == "save-config":
|
||||||
try:
|
try:
|
||||||
parsed_toml = toml.loads(request.get_json())
|
parsed_toml = json.loads(request.get_json())
|
||||||
save_config(parsed_toml, '/etc/pwnagotchi/config.toml')
|
save_config(parsed_toml, '/etc/pwnagotchi/config.toml')
|
||||||
|
|
||||||
_thread.start_new_thread(restart, (self.mode,))
|
_thread.start_new_thread(restart, (self.mode,))
|
||||||
return "success"
|
return "success"
|
||||||
except Exception as ex:
|
except Exception as ex:
|
||||||
logging.error(ex)
|
logging.error(ex)
|
||||||
return "config error"
|
return "config error", 500
|
||||||
abort(404)
|
abort(404)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user