fix db meltage. [#191]

This commit is contained in:
reality 2013-01-22 23:27:02 +00:00
parent 82d0362ee3
commit 4f530e5bc6
2 changed files with 12 additions and 1 deletions

View File

@ -12,6 +12,17 @@ var webInterface = function(dbot) {
app.get('/', function(req, res) {
res.render('index', { 'name': dbot.config.name });
});
console.log(Object.keys(app));
app.configure(function(){
app.use(function(err, req, res, next) {
console.log('Web encountered an error: ' + err);
});
});
app.on('error', function(err) {
console.log('Web encountered an error: ' + err);
});
var server = app.listen(dbot.config.web.webPort);

2
run.js
View File

@ -104,7 +104,7 @@ DBot.prototype.t = function(string, formatData) {
// Save the database file
DBot.prototype.save = function() {
fs.writeFile('db.json', JSON.stringify(this.db, null, ' '));
fs.writeFileSync('db.json', JSON.stringify(this.db, null, ' '));
};
// Hot-reload module files.