forked from GitHub/dbot
fix express close for 3.0. you could document your shit guys
This commit is contained in:
parent
aa39fd7d4c
commit
91ba685401
@ -11,9 +11,8 @@ var webInterface = function(dbot) {
|
|||||||
app.get('/', function(req, res) {
|
app.get('/', function(req, res) {
|
||||||
res.render('index', { 'name': dbot.config.name });
|
res.render('index', { 'name': dbot.config.name });
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
||||||
app.listen(dbot.config.web.webPort);
|
var server = app.listen(dbot.config.web.webPort);
|
||||||
|
|
||||||
var reloadPages = function(pages) {
|
var reloadPages = function(pages) {
|
||||||
for(var p in pages) {
|
for(var p in pages) {
|
||||||
@ -40,7 +39,7 @@ var webInterface = function(dbot) {
|
|||||||
'reloadPages': reloadPages,
|
'reloadPages': reloadPages,
|
||||||
|
|
||||||
'onDestroy': function() {
|
'onDestroy': function() {
|
||||||
app.close();
|
server.close();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user