From 8f67edbc40750a40a4657b55016f47e4a54e28a6 Mon Sep 17 00:00:00 2001 From: Mitchell Wills Date: Mon, 14 Apr 2014 22:42:01 -0400 Subject: [PATCH] Removed sending value as a message field in GetParam service call --- src/core/Param.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/core/Param.js b/src/core/Param.js index 9009d903f..c0a70e8ee 100644 --- a/src/core/Param.js +++ b/src/core/Param.js @@ -30,8 +30,7 @@ ROSLIB.Param.prototype.get = function(callback) { }); var request = new ROSLIB.ServiceRequest({ - name : this.name, - value : JSON.stringify('') + name : this.name }); paramClient.callService(request, function(result) {