diff --git a/src/config.js b/src/config.js index 1d9839fe..7e65949d 100644 --- a/src/config.js +++ b/src/config.js @@ -392,7 +392,7 @@ function preprocessConfig(cfg) { cfg["channel-blacklist"] = tbl; /* Check channel path */ - if(!/^[-\w]+$/.test(cfg["channel-blacklist"])){ + if(!/^[-\w]+$/.test(cfg["channel-path"])){ LOGGER.error("Channel paths may only use the same characters as usernames and channel names."); process.exit(78); // sysexits.h for bad config }