* Lots of experimental stuff with message area in relation of FSE. Have a fairly good idea now how this can work... a few missing pieces

This commit is contained in:
Bryan Ashby 2015-08-09 19:32:38 -06:00
parent dbb3e04166
commit 901f83453c
4 changed files with 100 additions and 64 deletions

View file

@ -42,13 +42,15 @@ function MenuModule(options) {
self.menuConfig.art,
self.client,
{ font : self.menuConfig.font },
function displayed(err, artData)
{
if(!err) {
function displayed(err, artData) {
if(err) {
self.client.log.debug( { art : self.menuConfig.arg, err : err }, 'Could not display art');
} else {
mciData.menu = artData.mciMap;
}
callback(err);
});
callback(null); // non-fatal
}
);
} else {
callback(null);
}