diff --git a/openlp/plugins/remotes/lib/httpserver.py b/openlp/plugins/remotes/lib/httpserver.py index 345550f30..0da445ede 100644 --- a/openlp/plugins/remotes/lib/httpserver.py +++ b/openlp/plugins/remotes/lib/httpserver.py @@ -332,12 +332,7 @@ class HttpConnection(object): args = [] for param in match.groups(): args.append(param) - try: - response = func(*args) - except ValueError as error: - log.exception(u'Error while decoding JSON message ' - 'from remote browser.') - return False + response = func(*args) break if response: self.send_response(response)