fix missing result on module.add calls

This commit is contained in:
Peter Hormanns 2014-06-18 14:32:27 +02:00
parent 22b26ccad7
commit a027cf8d86

View File

@ -71,6 +71,9 @@ public class RpcClient {
list.add(resArray[idx]); list.add(resArray[idx]);
} }
} }
if (execute instanceof Map) {
list.add(execute);
}
return list; return list;
} catch (XmlRpcException e) { } catch (XmlRpcException e) {
throw new JSCliException(e); throw new JSCliException(e);