* Not much. Will start on DEMO mode for View development, etc.

This commit is contained in:
Bryan Ashby 2015-04-24 16:54:25 -06:00
parent f4a5b9e4be
commit ca2274dcf5
4 changed files with 21 additions and 1 deletions

View file

@ -77,6 +77,7 @@ function getDefaultConfig() {
preLoginTheme : '*',
// :TODO: change to nua
users : {
usernameMin : 2,
usernameMax : 22,

View file

@ -23,7 +23,11 @@ module.exports = {
logPathError = logPath + ' is not a directory!';
}
} catch(e) {
logPathError = e.message;
if('ENOENT' === e.code) {
logPathError = 'No such file or directory: ' + logPath;
} else {
logPathError = e.message;
}
}
if(logPathError) {