From a06a1dd24c7f11372d2dbbfbd932d09d34d18486 Mon Sep 17 00:00:00 2001 From: Tim Bentley Date: Wed, 14 Dec 2011 20:26:23 +0000 Subject: [PATCH] Fix url messages --- openlp/plugins/remotes/lib/httpserver.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openlp/plugins/remotes/lib/httpserver.py b/openlp/plugins/remotes/lib/httpserver.py index fb8e27cd3..ca4b4a45c 100644 --- a/openlp/plugins/remotes/lib/httpserver.py +++ b/openlp/plugins/remotes/lib/httpserver.py @@ -252,8 +252,8 @@ class HttpConnection(object): (r'^/api/display/(hide|show)$', self.display), (r'^/api/alert$', self.alert), (r'^/api/plugin/(search)$', self.pluginInfo), - (r'^/api/status$', self.status), - (r'^/api/changeStatus/(blank|theme|desktop)$', self.changeStatus), + (r'^/api/display-status$', self.status), + (r'^/api/display-status/(blank|theme|desktop)$', self.changeStatus), (r'^/api/(.*)/search$', self.search), (r'^/api/(.*)/live$', self.go_live), (r'^/api/(.*)/add$', self.add_to_service)