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:
commit
0f2c77187c
@ -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