summaryrefslogtreecommitdiff
path: root/components/rvi_common
diff options
context:
space:
mode:
authorMagnus Feuer <mfeuer@jaguarlandrover.com>2015-06-12 18:45:24 -0700
committerMagnus Feuer <mfeuer@jaguarlandrover.com>2015-06-12 20:21:44 -0700
commitde22d487a307ead8a7bec50954bd0b749c26e8c0 (patch)
treec97d57b5aa104e46957c59bc5733e0498dc2ffc8 /components/rvi_common
parent3c1bcf47db5a89d0f02b751dfa40b4e81d166381 (diff)
downloadrvi_core-de22d487a307ead8a7bec50954bd0b749c26e8c0.tar.gz
Simplified websocket now works with JSON-RPC from locally connected services
Diffstat (limited to 'components/rvi_common')
-rw-r--r--components/rvi_common/src/rvi_common.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/rvi_common/src/rvi_common.erl b/components/rvi_common/src/rvi_common.erl
index 63db02b..19055af 100644
--- a/components/rvi_common/src/rvi_common.erl
+++ b/components/rvi_common/src/rvi_common.erl
@@ -145,7 +145,7 @@ get_request_result({error, Reason})->
{ error, Reason};
get_request_result(ok)->
- { ok, ok, "{}"};
+ { ok, ok};
get_request_result(Other)->
?error("get_request_result(): Unhandled result: ~p", [Other]),