You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-04 15:02:09 +03:00
fix bug when callback is undefined
This commit is contained in:
2
index.js
2
index.js
@@ -710,7 +710,7 @@ RedisClient.prototype.send_command = function (command, args, callback) {
|
||||
if (command === 'set' || command === 'setex') {
|
||||
if(args[args.length - 1] === undefined || args[args.length - 1] === null) {
|
||||
var err = new Error('send_command: ' + command + ' value must not be undefined or null');
|
||||
return callback(err);
|
||||
return callback && callback(err);
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user