Commit c99d6d78 authored by carlosperate's avatar carlosperate

Fix minor bug in BlocklyRequestHandler:

When the Sketch path was changed the server was returning the new address in plain text instead of JSON. Updated to send the correct JSON data.
parent eed8ea61
......@@ -354,7 +354,7 @@ def set_sketch_path():
new_directory = browse_dir()
if new_directory != '':
ServerCompilerSettings().sketch_dir = new_directory
return new_directory
return get_sketch_path()
def get_sketch_path():
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment