Skip to content

Commit 03a6922

Browse files
committed
Update extendedApi.js
1 parent 748e155 commit 03a6922

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/extendedApi.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ All documented and exposed API belongs in here
1111

1212
RedisClient.prototype.send_command_buf = function (command, args, callback) {
1313
try {
14-
this.next_command_use_buf = true;
14+
this.next_command_ret_buf = true;
1515
this.send_command(command, args, callback);
1616
} finally {
17-
this.next_command_use_buf = false; // Set to false even if internal_send_command has not been called or throw
17+
this.next_command_ret_buf = false; // Set to false even if internal_send_command has not been called or throw
1818
}
1919
};
2020

0 commit comments

Comments
 (0)