Fix Errors

This commit is contained in:
LAX18 Development
2022-06-04 20:24:27 -04:00
parent d4d19d6001
commit 1c6fca2988
+1 -1
View File
@@ -54,7 +54,7 @@ def volume():
def curl():
if request.method == 'POST':
json = request.get_json()
output = os.popen("cd /usr/share/dump1090-mutability/html && curl "+json['url']).read()
output = os.popen("curl "+json['url']).read()
#output = os.popen(json['command']).read()
return str(output)