Skip to content

Commit

Permalink
Fixed invoke method
Browse files Browse the repository at this point in the history
  • Loading branch information
andot committed Aug 18, 2015
1 parent 1b84739 commit 14dfb8c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions lib/client/Client.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* *
* HproseClient for Node.js. *
* *
* LastModified: Aug 8, 2015 *
* LastModified: Aug 18, 2015 *
* Author: Ma Bingyao <[email protected]> *
* *
\**********************************************************/
Expand Down Expand Up @@ -845,7 +845,7 @@ function Client(uri, functions, settings) {
args.push(noop);
}
for (var i = 2; i < argc; i++) {
args[i] = arguments[i];
args.push(arguments[i]);
}
}
return _invoke(self, name, args, _batch);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hprose",
"version": "2.0.3",
"version": "2.0.4",
"homepage": "https://github.com/hprose/hprose-nodejs",
"description": "hprose for node.js",
"keywords": [
Expand Down

0 comments on commit 14dfb8c

Please sign in to comment.