mirror of
https://github.com/reality/dbot.git
synced 2024-11-24 04:49:25 +01:00
fix error on "showconfig" with no paremeters (now shows root config)
This commit is contained in:
parent
8d8cf2bd9a
commit
ded2f09e87
@ -26,7 +26,7 @@ var commands = function(dbot) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
var currentOption;
|
var currentOption;
|
||||||
if(configKey.length != 1) {
|
if(configKey && configKey.length != 1) {
|
||||||
configKey = _.last(configKey);
|
configKey = _.last(configKey);
|
||||||
if(_.has(userConfigPath, configKey) && !_.isUndefined(userConfigPath[configKey])) {
|
if(_.has(userConfigPath, configKey) && !_.isUndefined(userConfigPath[configKey])) {
|
||||||
currentOption = userConfigPath[configKey];
|
currentOption = userConfigPath[configKey];
|
||||||
|
Loading…
Reference in New Issue
Block a user