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

Forgot a comma

Signed-off-by: DTrejo <david.trejo@voxer.com>
This commit is contained in:
Trae Robrock
2012-06-28 22:42:44 -07:00
committed by DTrejo
parent db4f1648d4
commit eb005b10df

View File

@@ -526,7 +526,7 @@ function reply_to_strings(reply) {
RedisClient.prototype.return_reply = function (reply) {
var command_obj, obj, i, len, type, timestamp, argindex, args, queue_len;
command_obj = this.command_queue.shift()
command_obj = this.command_queue.shift(),
queue_len = this.command_queue.getLength();
if (this.pub_sub_mode === false && queue_len === 0) {