1
0
mirror of https://github.com/redis/node-redis.git synced 2025-08-06 02:15:48 +03:00

Fix bug with optional callbacks for hmset.

This commit is contained in:
Matt Ranney
2011-06-30 16:13:57 -06:00
parent 04b4db8723
commit 891529c06a
4 changed files with 8 additions and 2 deletions

View File

@@ -486,7 +486,7 @@ RedisClient.prototype.send_command = function (command, args, callback) {
// probably the fastest way:
// client.command([arg1, arg2], cb); (straight passthrough)
// send_command(command, [arg1, arg2], cb);
} else if (typeof callback === "undefined") {
} else if (! callback) {
// most people find this variable argument length form more convenient, but it uses arguments, which is slower
// client.command(arg1, arg2, cb); (wraps up arguments into an array)
// send_command(command, [arg1, arg2, cb]);