forked from GitHub/dbot
fix error on "showconfig" with no paremeters (now shows root config)
This commit is contained in:
parent
8d8cf2bd9a
commit
ded2f09e87
@ -23,10 +23,10 @@ var commands = function(dbot) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var currentOption;
|
||||
if(configKey.length != 1) {
|
||||
if(configKey && configKey.length != 1) {
|
||||
configKey = _.last(configKey);
|
||||
if(_.has(userConfigPath, configKey) && !_.isUndefined(userConfigPath[configKey])) {
|
||||
currentOption = userConfigPath[configKey];
|
||||
|
Loading…
Reference in New Issue
Block a user