3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-24 04:49:25 +01:00

Merge pull request #320 from JohnMaguire2013/admin

fix error on "showconfig" with no paremeters (now shows root config)
This commit is contained in:
reality 2013-03-21 07:35:32 -07:00
commit 0f2c77187c

View File

@ -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];