From 582d0a880ede3b6816f72fac48ed40355df01ca4 Mon Sep 17 00:00:00 2001 From: Nicholas Pease Date: Sat, 4 Jun 2022 20:24:27 -0400 Subject: [PATCH] Fix Errors --- python/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/api.py b/python/api.py index 1fdc9c5..672c65a 100644 --- a/python/api.py +++ b/python/api.py @@ -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)