summaryrefslogtreecommitdiffstats
path: root/src/ogRest.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/ogRest.py')
-rw-r--r--src/ogRest.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ogRest.py b/src/ogRest.py
index dcc0817..ab549d9 100644
--- a/src/ogRest.py
+++ b/src/ogRest.py
@@ -134,9 +134,7 @@ class ogRest():
op = httpparser.getRequestOP()
URI = httpparser.getURI()
if ("GET" in op):
- if ("probe" in URI):
- self.process_probe(client)
- elif ("hardware" in URI):
+ if "hardware" in URI:
self.process_hardware(client)
elif ("run/schedule" in URI):
self.process_schedule(client)
@@ -145,6 +143,8 @@ class ogRest():
elif ("POST" in op):
if ("poweroff" in URI):
self.process_poweroff(client)
+ elif "probe" in URI:
+ self.process_probe(client)
elif ("reboot" in URI):
self.process_reboot(client)
elif ("shell/run" in URI):